oldratlee/translations

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

oldratlee opened this issue · 1 comments

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

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

git checkout -b new_branch_name from_branch

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