如何通过保持双方的所有添加来解决git冲突?

时间:2017-09-12 17:13:43

标签: git git-merge git-rebase merge-conflict-resolution git-merge-conflict

我一直遇到以下问题,我想知道使用现有的git命令是否有一个简单的解决方案,或者我是否需要write a custom merge driver

以下是演示我的问题的示例:假设我的仓库的master分支包含以下文件:

$ cat animal.hpp 
#include <string>

class Animal
{
public:
  virtual std::string say() const = 0;
};

我创建了一个名为mybranch的新分支并进行了以下更改:

diff --git a/animal.hpp b/animal.hpp
index e27c4bf..3bb691a 100644
--- a/animal.hpp
+++ b/animal.hpp
@@ -5,3 +5,13 @@ class Animal
 public:
   virtual std::string say() const = 0;
 };
+
+class Dog : public Animal
+{
+public:
+  virtual std::string
+  say() const override
+  {
+    return "woof";
+  }
+};

与此同时,其他人将以下非常类似的更改添加到master

diff --git a/animal.hpp b/animal.hpp
index e27c4bf..310d5a7 100644
--- a/animal.hpp
+++ b/animal.hpp
@@ -5,3 +5,13 @@ class Animal
 public:
   virtual std::string say() const = 0;
 };
+
+class Cat : public Animal
+{
+public:
+  virtual std::string
+  say() const override
+  {
+    return "meow";
+  }
+};

现在,当我尝试将mybranchmaster合并(或将mybranch重新合并到master)时,我发生了冲突:

$ cat animal.hpp 
#include <string>

class Animal
{
public:
  virtual std::string say() const = 0;
};

<<<<<<< HEAD
class Dog : public Animal
=======
class Cat : public Animal
>>>>>>> master
{
public:
  virtual std::string
  say() const override
  {
<<<<<<< HEAD
    return "woof";
=======
    return "meow";
>>>>>>> master
  }
};

解决冲突的正确方法是:

$ cat animal.hpp 
#include <string>

class Animal
{
public:
  virtual std::string say() const = 0;
};

class Dog : public Animal
{
public:
  virtual std::string
  say() const override
  {
    return "woof";
  }
};

class Cat : public Animal
{
public:
  virtual std::string
  say() const override
  {
    return "meow";
  }
};

我通过手动编辑文件,复制两个类共有的代码以及删除冲突标记来创建上述分辨率。但我认为git应该能够自动创建这个分辨率,因为它只需要添加在一个分支中添加的所有行,然后添加在另一个分支中添加的所有行,而不需要重复删除公共行。我怎样才能让git为我做这个?

(允许我自定义订单的解决方案的加分点 - 先Dog或先Cat

2 个答案:

答案 0 :(得分:4)

Git 无法在典型的工作流程中为您处理这种合并。那是为什么要求你进行干预。它非常非常努力地不会丢失任何一方的更改,但它并不真正知道你想如何解决它或你想如何解决它。

您应该查看合并工具以帮助您解决此问题。或者,您可以手动执行此操作并删除Git合并冲突行,并自行处理这两个文件的合并。

答案 1 :(得分:1)

是一个名为union merge的东西:

$ printf 'animal.hpp\tmerge=union\n' > .gitattributes
$ git merge --no-commit mybranch
Auto-merging animal.hpp
Automatic merge went well; stopped before committing as requested

在这种特殊情况下,它实际上达到了预期的效果。但是,在许多情况下,它可能会失败,并且它永远不会失败(我的意思是它从未认为自己失败,即使它产生了无意义的结果),所以毕竟在.gitattributes设置它是不明智的(除非你的情况非常罕见)。

相反,最好在事后使用git merge-file

调用它
$ git merge --abort
$ rm .gitattributes
$ git merge mybranch
Auto-merging animal.hpp
CONFLICT (content): Merge conflict in animal.hpp
Automatic merge failed; fix conflicts and then commit the result.
$ git show :1:animal.hpp > animal.hpp.base
$ git show :2:animal.hpp > animal.hpp.ours
$ git show :3:animal.hpp > animal.hpp.theirs
$ mv animal.hpp.ours animal.hpp
$ git merge-file --union animal.hpp animal.hpp.base animal.hpp.theirs

确保结果符合您的要求,然后清理一下并添加最终合并版本:

$ rm animal.hpp.base animal.hpp.theirs
$ git add animal.hpp 

现在您已准备好提交结果。 编辑:以下是我得到的结果(在两种情况下):

$ cat animal.hpp 
#include <string>

class Animal
{
public:
  virtual std::string say() const = 0;
};

class Cat : public Animal
{
public:
  virtual std::string
  say() const override
  {
    return "meow";
  }
};

class Dog : public Animal
{
public:
  virtual std::string
  say() const override
  {
    return "woof";
  }
};