how to use git checkout -b
Để tạo một local branch mới và checkout tới remote đó luôn thì dùng
$ git checkout -b iss53
Switched to a new branch 'iss53'
----------------------------------
This is shorthand for:
$ git branch iss53
$ git checkout iss53
$ git checkout -b iss53
Switched to a new branch 'iss53'
----------------------------------
This is shorthand for:
$ git branch iss53
$ git checkout iss53
Comments
Post a Comment