oldratlee / translations

🐼 Chinese translations for classic software development resources
https://github.com/oldratlee/translations
Other
6.86k stars 1.56k forks source link

git checkout -b issue-#001 master 后面的master是什么参数 #17

Closed oldratlee closed 8 years ago

oldratlee commented 8 years ago

同步自http://blog.jobbole.com/76867/#comment-152803 ,Cstars 的关于Gitflow工作流的问题:

写的非常好,解答了不少疑惑,问一下, git checkout -b issue-#001 master 后面的master是什么参数啊?我只知道 git checkout -b issue-#001 这个是检出新分支并切换到该分支.求解惑.

oldratlee commented 8 years ago

git checkout -b new_branch_name from_branch

最后的这个参数可以省略,表示从当前分支新建分支。