How to create local branch from remote branch
Bài đăng này đã không được cập nhật trong 8 năm
いつも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