我尝试将git rebase
放在某个feature-branch
上,在其上应用master
分支(对主要人员进行重新绑定),这远远超过了未来的分支。 (master有更多新提交而不是功能分支)
所以,
git branch : feature-branch
git rebase master
[resolving conflicts]
git rebase --continue
[resolving conflicts]
git rebase --continue
git push -f origin feature-branch
然后我创建了一个PR(Pull Request)到upstream
,并在更改列表中(仍然)看到upstream
和origin
之间的冲突!
为什么?
是否有一些设置,比如git-config我应该调整?
-
对于较小的代码,我从未遇到过这个问题。
答案 0 :(得分:1)
我怀疑您的本地主分支机构可能不是最新的origin / master。
试过'git rebase origin / master'吗?