#ローカルリポジトリにブランチの作成
git branch <branchname>
#リモートリポジトリにブランチを追加
git push origin <branchname>
#ブランチ一覧表示
git branch
※ -a オプションを付けると、リモートブランチも含めたブランチの一覧表示
#ローカルブランチの切り替え
git checkout <branchname>
#リモートブランチの切り替え
git checkout -b <branchname> origin/<branchname>
#ブランチの削除
git branch -d <branchname>
#ブランチ名の変更
git branch -m <oldbranch> <newbranch>