git rebase将冲突标记内联到文件中;就像是:
<<<<<<< HEAD
Whatever line + context is different from the previous commit
=======
Whatever line + context is different from the commit being applied
>>>>>>> new version, new branch:app/views/common/version.txt
当我使用git apply来应用使用git format-patch创建的补丁时,它将无法保留默认修改的任何文件。我可以给它--reject这将导致它为那些具有无法解决冲突的人创建.rej文件,但实际上,我希望它修改文件并让每个人都处于git rebase所做的状态,这样我就可以打开文件,手动合并它,然后git添加它并告诉git apply继续。有没有办法做到这一点,我只是不知道?
对我来说,以下工作:
git init
seq 1 30 > file
git add file
git commit -m 1-30
sed -i '13a13.4' file
git commit -m 'add 13.4' file
git format-patch -1
git reset --hard HEAD^
sed -i 13d file
git commit -m 'remove 13' file
git am -3 0001-add-13.4.patch
之后file
有冲突标记。那是使用git am -3
而不是git apply
。
使用三向合并选项:
git apply -3 0001-patch.patch
另一种解决方案是使用patch --merge
而不是任何git工具应用补丁。当从一个完全不同的git repo中进行一些更改时,这对我来说效果更好,所以我不能(轻松地)使用git am -3
或git apply -3
。