ブランチを表示する(現在の作業ブランチを確認)
$ git branch
新しいブランチを切る
$ git branch <branch-name>
作業するブランチを切り替える。
$ git checkout <branch-name>
ブランチを削除する。
$ git branch -d <branch-name>
ブランチを作成し、そのブランチに切り替える。
$ git branch -b <branch-name>