git branch
명령어는 새 브랜치를 생성하는데 사용합니다.
# git branch [브랜치 명] [브랜치를 생성할 위치(HEAD 또는 커밋 해쉬)]
$ git log --graph --oneline --all
* 611ea6e (HEAD -> master, origin/master, origin/HEAD) Update configurations
* 7ef7c74 Translate English into Korean
$ git branch develope HEAD~1
$ git log --graph --oneline --all
* 611ea6e (HEAD -> master, origin/master, origin/HEAD) Update configurations
* 7ef7c74 (develop)Translate English into Korean