git拉请求
我试图遵循这个模型:http://nvie.com/posts/a-successful-git-branching-model/
并试图了解这样的合并将如何从Github上的请求中起作用......特别是“--no-ff”标志:
git merge --no-ff hotfix-1.2.1
另外,在Github上合并PR请求之后,将这些更新引入本地主分支的最佳方法是什么? 它会是:
git pull github-remote-branch
Pull请求在GitHub上合并总是创建一个新的提交,所以他们已经像git merge --no-ff ...
。
[A]在PR请求已合并到Github上时,将这些更新引入本地主分支的最佳方法是什么?
如果您的本地master
分支设置为跟踪远程master
分支,请执行此操作
git checkout master
git pull --ff-only
如果您在本地master
分支上提交了不在远程master
分支上的提交,这将会中止并显示错误。 (没有--ff-only
的默认值就是合并。)
下一篇: flow supposed to see a more compressed history on master than develop?