どのリモートリポジトリと紐づいているか確認する
git remote -v
新しいブランチを作成する
git branch <name>
例:git branch test
別ブランチに移動する
git checkout <ブランチ名>
例:git checkout test
ブランチ名を変更する
git branch -m <古いブランチ名> <新しいブランチ名>
ブランチを指定してリモートリポジトリにあげる
git push origin <ブランチ名>
例:git push origin test
リモートリポジトリのブランチを指定してクローンする
git clone -b [ブランチ名][リポジトリのアドレス]
コメント