添加相同文件的 Git 挑选提交



请考虑以下命令创建的情况:

git init
git commit --allow-empty -m "Initial commit"
git branch first
git branch second
git checkout first
echo 1 > file
echo 2 >> file
echo 3 >> file
echo 4 >> file
git add file
git commit -m "Commit file 1 to 4"
git checkout second
echo 1 > file
echo 2 >> file
echo 3 >> file
echo 4 >> file
echo 5 >> file
echo 6 >> file
git add file
git commit -m "Commit file 1 to 6"
git checkout first
git cherry-pick second

分支first上的file包含从 1 到 4 的数字(每个数字都在自己的行中)。分支second上的同一file包含从 1 到 6 的数字。file已作为新分支添加到两个分支中。

现在,如果我尝试将一个分支挑到另一个分支上,我梦寐以求的结果将是(file内容):

1
2
3
4
5
6

可接受的结果是

1
2
3
4
<<<<<<< HEAD
=======
5
6
>>>>>>> 5c9d53e... Commit file 1 to 6

但是,git 总是给我:

<<<<<<< HEAD
1
2
3
4
=======
1
2
3
4
5
6
>>>>>>> 5c9d53e... Commit file 1 to 6

我必须自己解决所有的冲突。

如何挑选两个相互添加相同文件(内容可能相似)的提交?如何让 git 尝试分析它们的内容并仅在需要时遇到冲突?

现在它表现得像嘿!这些提交添加了相同的文件,所以我将在这里抛出整个文件冲突!我懒得看他们里面。

git init
git commit --allow-empty -m "Initial commit"
git branch first
git branch second
git checkout first
echo 1 > file
echo 2 >> file
echo 3 >> file
echo 4 >> file
git add file
git commit -m "Commit file 1 to 4"
git checkout second
echo 1 > file
echo 2 >> file
echo 3 >> file
echo 4 >> file
echo 5 >> file
echo 6 >> file
git add file
git commit -m "Commit file 1 to 6"
git checkout first
#Here is where I did edits:
git cherry-pick --strategy resolve second
git diff HEAD..second
git add file
git commit -C second

您正在使用默认的合并策略:recursiveresolve合并策略将在您可能想要的状态下产生冲突。

$ git diff HEAD..second
diff --git a/file b/file
index 94ebaf9..b414108 100644
--- a/file
+++ b/file
@@ -2,3 +2,5 @@
2
3
4
+5
+6
$ cat file
1
2
3
4
5
6

在樱桃挑选之后需要运行

git checkout --conflict=merge file

为了得到可接受的file内容,即:

1
2
3
4
<<<<<<< ours
=======
5
6
>>>>>>> theirs

--strategy resolve和 Git 2.9 都没有像 @BryceDrew 和 @torek 分别建议的那样为我解决问题。

相关内容

  • 没有找到相关文章

最新更新