사용자 이름과 이메일 주소 설정

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]

Git 저장소 만들기

Git 저장소에 원격저장소 연결

git remote add orign [[email protected]](<mailto:[email protected]>):egoing2/gitflow.git
git remote -v

브랜치

브랜치 만들기

git branch <branchname>

브랜치 전환

git checkout <branch>

브랜치 삭제하기

git branch -d <branchname>

리모트 브랜치 삭제하기

git push origin --delete <branchname>

되돌리기

완료한 커밋 수정하기

git commit --amend

Stage Area에 추가된 파일을 Unstage로 변경하기