vote up 3 vote down star

"man gitglossary" contains this definition of an evil merge:

An evil merge is a merge that introduces changes that do not appear in any parent.

I am not sure I understand the point the authors are trying to get at. Why is it evil ?

flag

67% accept rate

3 Answers

vote up 5 vote down check

Because it's putting things in the code that no one ever asked to be there. As if you had this code:

$foo = bar;
$baz = qxx;

and this change:

$foo = bar;
$foo++;
$baz = qxx;

got merged with this change:

$foo = bar;
$foo--;
$baz = qxx;

in a fashion that somehow produced:

$foo = bar;
$foo++;
$foo--;
--$baz;
$baz = qxx;

Clearly, this is evil.

I would guess that it's of enough concern to be in man gitglossary because the more involved your merging algorithms are, the more likely it is that they will produce such a thing.

link|flag
To produce this, simply call git-merge with the --no-commit option, add some more changes, check them in, and commit. The pregenerated merge commit message will automatically be used. – Jefromi Sep 22 at 21:31
@Jefromi By this definition, any merge with a conflict that has to be resolved manually is an evil merge? There is a strong semantic difference to what @chaos says; you could potentially get his results without getting any kind of conflict in the merge process. Which is truly evil. – krosenvold Sep 23 at 5:44
vote up 3 vote down

I think it might be named 'evil merge' because it is difficult corner case for "git blame" to solve when annotating file (generating line-wise history annotations).


Evil merge migh be needed when you developed feature 'A' on main branch, and feature 'B' on side branch, and those features conflict in semantic (non-textual) way. An example would be using the same name for global variable, with different meanings -- this requires renaming the variable for one of features.

For evil merge "git show --cc" has non-empty compact combined diff (but I am not sure if it is equivalence relation; the implication might be in one direction only, i.e. "evil merge" then non-empty "git diff-tree -p --cc").

link|flag
Intuitively, @chaos' response feels more correct, but I know that you're good with these things ;) It feels like you're describing a good old merge conflict, where 2 people have solved overlapping parts of the same problem - or maybe even the same problem. Once the merge is finished, why would you want to recreate it? Isn't it overly poetic to call this "fairly regular" incident "evil" ? – krosenvold Sep 23 at 5:53
Resolving a conflict usually involves choosing one of versions over the other, sometimes choosing one version lines over lines from other version. Evil merge has lines which are not in any of its parents, so it cannot be automatically recreated even by a most sophisticated (generic) merge strategy. – Jakub Narębski Sep 23 at 8:26
(Removed line about "evil" merge and automated process) – Jakub Narębski Sep 23 at 8:32
vote up 0 vote down

Might be because it appears to be merge but is in fact not.

link|flag
It is merge (as: it is a merge commit), but it is evil merge because it cannot be result of any automatic merge. – Jakub Narębski Sep 22 at 19:47
Actually, I agree with Sebastian: a merge that breaks the rules about what a real merge is isn't really a merge at all, is it? The git system might label it a "merge", but it's not a true merge, as meant by the abstract concept of "merge". So, an evil merge is a non-merge in a merge's clothing. So to speak. – Dan Moulding Sep 23 at 2:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.