I still don't have a confirmed way to reproduce this but in case this is some well known issue, I'll ask it anyway. What happens is that git often creates conflicts like this:

<<<<<<< HEAD
  } // action_do_add
=======
  } // action_do_add
...lots of code here...
>>>>>>> some_branch

So instead of noticing that I simply added a new piece of code, git thinks that I modified the whole line instead. This sometimes happens in the middle of the file but most often - in the end of the file. My guess is that it might have something to do with end-of-line characters but I yet have to run tests to confirm that. Has anyone had the same issue and if yes, how do you fix it?

link|improve this question

76% accept rate
probably, just space differences? – Mahesh Velaga Nov 30 '11 at 14:31
I checked that and it appears to be not the case. Both lines have the same number of spaces so it's not like there is some hidden space at the end of one line. – Eugene Nov 30 '11 at 15:46
Different line endings? Does these lines look equal in a hex editor? – Rudi Nov 30 '11 at 16:51
feedback

1 Answer

When merging, git checks differences in context to the surrounding lines. Consider this code:

def a
  do_something_a
end

def b
  do_something_b
end

def c
  do_something_c
end

When one branch changes something in method a (or deletes it), and another branch changes something in method c (or deletes it), you still have the context of method b for both diffs. That's why the changes will probably merge without conflicts.

However, if you have something like this:

def a
  do_something_a
end

def c
  do_something_c
end

you will most likely end up with conflicts when editing one method in one branch and the other in another branch because you broke the corresponding context of the diff in the other branch.

That's also why it happens more often at the end of the file—because there is just the context above the diff, but none below it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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