Git 사용 환경 최초 설정
git config --global user.name "greedysiru"
git config --global user.email "greedyisru@g.com"
Git 저장소 초기화
git init
원격 저장소 복제
git clone
Git staging
git add [파일 명]
git add .
스냅샷
git commit -m "메시지"
git commit -a -m "메시지"
Git 상태, 로그 확인
git status
git log
git log --oneline
코드 버전 전환
git checkout
원격 저장소로 업로드
git push
원격 저장소 관리 및 체크
git remote
원격 저장소 복제
git clone [프로젝트의 원격 저장소]
- brach를 orgin으로 가서 push하는 명령
git push [origin] [브랜치 이름]
branch
git branch
git branch [새 브랜치 이름]
git checkout [브랜치 명]
git checkout -b [새 브랜치 이름]
- 기존 branch 기반으로 새 branch 생성
git checkout -b [새 브랜치 이름] [기존 브랜치 이름]
git branch -d [삭제 브랜치 이름]
merge
git merge [브랜치 이름]