I'm testing the use of git-subtree to merge a library repo into a bigger project. It seems great in principle. Sometimes when I do a "git subtree pull" I get merge conflicts like this:

<<<<<<< HEAD
=======
An inserted line from the lib repo
>>>>>>> 4d348903449ebb584ab224cb34c6038fbf6b352d

That's for a change that was made in the library repo, merging into a file that has not been modified locally. Or another example, where I added a line in the local project repo, but in a file that is part of the subtree being merged:

<<<<<<< HEAD
Another inserted line
=======
>>>>>>> 4d348903449ebb584ab224cb34c6038fbf6b352d

Why would git report these as merge conflicts, but the region reported as the conflict is empty? Any way to prevent it?

These are easy enough to resolve, but it messes up the git-subtree workflow

link|improve this question

25% accept rate
Make sure your line endings are the same on all repositories (Linux, Windows, Mac) – knittl Dec 29 '11 at 22:25
feedback

1 Answer

Use submodules to hold shared work. There is git-slave if you do a lot of work with shared and non-shared projects that need to be coordinated. Your line ending storage disparity will disappear.

link|improve this answer
Please add comments for the downvote. – Adam Dymitruk Jan 1 at 6:24
Downvoted because I asked about using git-subtree, not how to use submodules. And there's no evidence this has anything to do with line endings – Jeremy Slade Jan 28 at 21:11
Yes correct. I misread. – Adam Dymitruk Jan 29 at 2:47
feedback

Your Answer

 
or
required, but never shown

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