Closed oldratlee closed 8 years ago
同步自http://blog.jobbole.com/76867/#comment-152803 ,Cstars 的关于Gitflow工作流的问题:
写的非常好,解答了不少疑惑,问一下, git checkout -b issue-#001 master 后面的master是什么参数啊?我只知道 git checkout -b issue-#001 这个是检出新分支并切换到该分支.求解惑.
git checkout -b issue-#001 master
master
git checkout -b issue-#001
git checkout -b new_branch_name from_branch
最后的这个参数可以省略,表示从当前分支新建分支。
同步自http://blog.jobbole.com/76867/#comment-152803 ,Cstars 的关于Gitflow工作流的问题:
写的非常好,解答了不少疑惑,问一下,
git checkout -b issue-#001 master
后面的master
是什么参数啊?我只知道git checkout -b issue-#001
这个是检出新分支并切换到该分支.求解惑.