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继续。有没有办法做到这一点,我只是不知道?
答案 0 :(得分:7)
对我来说,以下工作:
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
。
答案 1 :(得分:5)
使用三向合并选项:
git apply -3 0001-patch.patch
答案 2 :(得分:0)
另一种解决方案是使用patch --merge
而不是任何git工具来应用补丁。当从完全不同的git repo中进行一些更改时,这对我来说要好得多,因此我无法(轻松)使用git am -3
或git apply -3
。