我在合并更改时收到此错误:
The change could not be merged due to a path conflict.
Please rebase the change locally and upload the rebased commit for review.
我认为当两个不同的更改修改同一个文件时会发生这种情况 但我不知道如何在本地改变这些变化。
答案 0 :(得分:-3)
首先从git scm book
了解rebase的概念您也可以通过发出此命令
在本地提交中使用rebasegit rebase -i COMMIT_IDENTIFIER
以上命令将打开一个文本编辑器,以便在COMMIT_IDENTIFIER之后更改,重新排序或编辑您的提交。
我写了一篇关于git rebase here
的小博客