12/08/2018, 13:18

How to create local branch from remote branch

いつもremote branchをlocalにcheckoutする方法を忘れるので忘備録 branchのcheck $ git branch -a なければ $ git fetch 最後にlocal_branch remote_branchの順でcheckout $ git checkout -b #{loacal_branch} #{remote_branch}

いつもremote branchをlocalにcheckoutする方法を忘れるので忘備録

branchのcheck

$ git branch -a

なければ

$ git fetch

最後にlocal_branch remote_branchの順でcheckout

$ git checkout -b #{loacal_branch} #{remote_branch}
0