ローカルでリモートブランチにgit checkout

本日リモートブランチをどうローカルに持ってくるのかについて困ったので、ここでメモっておきます。

参考になった、というかほぼ丸パクリのページは以下です。

gitでリモートブランチをローカルにcheckoutする

git checkout -b local_branch_name origin/remote_branch_name

例をあげておきます。features/make_new_idというリモートブランチだったら以下のようになります。

// e.g.

git checkout -b features/make_new_id origin/features/make_new_id