How to create local branch from remote branch
This post hasn't been updated for 9 years
いつもremote branchをlocalにcheckoutする方法を忘れるので忘備録
branchのcheck
$ git branch -a
なければ
$ git fetch
最後にlocal_branch remote_branchの順でcheckout
$ git checkout -b #{loacal_branch} #{remote_branch}
All Rights Reserved