git 저장소 로컬로 복제
git clone https://github.com/.git (public)
git clone https://[user-name]@github.com/.git (private)
로컬 <-> 원격 저장소 연결
git remote -v
git remote add origin github.com/*.git
브랜치 생성 후 이동
git checkout -b [branch]
브랜치 삭제
git branch -d [branch]
원격 저장소 pull
git pull origin [branch]
변경사항 저장
git commit -m '[commit message]'
-m: 옵션 (커밋 메세지 지정)
원격 저장소 push
git push origin [branch]
현재 브랜치에 다른 브랜치 수정사항 병합
git merge [another branch]