【Git】git branchとcheckoutを同時に行う方法メモ

バラバラに行う

git branch ブランチ名
git checkout ブランチ名

同時に行う

git checkout -b ブランチ名

以上です