Re: [RFC, PATCH] A new merge algorithm (EXPERIMENTAL)
From: Daniel Barkalow <hidden>
Date: 2016-06-15 22:42:04
On Fri, 26 Aug 2005, Fredrik Kuivinen wrote:
On Fri, Aug 26, 2005 at 04:48:32PM -0400, Daniel Barkalow wrote:quoted
On Fri, 26 Aug 2005, Fredrik Kuivinen wrote:quoted
I will try to describe how the algorithm works. The problem with the usual 3-way merge algorithm is that we sometimes do not have a unique common ancestor. In [1] B and C seems to be equally good. What this algorithm does is to _merge_ the common ancestors, in this case B and C, into a temporary tree lets call it T. It does then use this temporary tree T as the common ancestor for D and E to produce the final merge result. In the case described in [1] this will work out fine and we get a clean merge with the expected result.The only problem I can see with this is that it's likely to generate conflicts between the shared heads, and the user is going to be confused trying to resolve them, because the files with the conflicts will be missing all of the more recent changes.I don't actually think that conflicts between shared heads is a problem. Given the criss-cross case (we want to merge A and B into M): M |\ | \ A B |\/| |/\| C D | / |/ E Lets assume there is a merge conflict if we try to merge C and D (which are the two shared heads). Then both A and B must resolve this conflict. If they have done it in the same way we wont get a merge conflict at M, if they have resolved it differently we will get a merge conflict. In the first case there is no merge conflict at M, in the second case the user has to pick which one of the two different resolutions she wants. Note that the algorithm will happily write non-clean merge results to the object database during the "merge shared heads" stage. Hence, when we are merging C and D "internally" we will _not_ ask the user to resolve any eventual merge conflicts.
Oh, okay, didn't see that part. So the merge for M sees that the old conflict is replaced entire with the common resolution or with a conflict between the different resolutions, but it doesn't report the old conflict anyway, because that section's been replaced in both sides.
quoted
Other than that, I think it should give the right answer, although it will presumably involve a lot of ancient history doing the internal merge. (Which would probably be really painful if you've got two branches that cross-merge regularly and never actually completely sync)The expensive part is the repeated merging. But as I wrote in my mail multiple shared heads seems to be pretty uncommon. As far as I can tell there is no reason for the number of shared heads to increase as a repository grows larger. However, this do probably depend on usage patterns.
I'd guess that the number of shared heads will increase as the people's usage gets more flexible. If people expected good results, I could see the stable series being mostly done as patches to 2.6.X, which would then be merged into various trees, and these would then be frequent common ancestors in merges. I'd also not be surprised in Linus's tree were abnormally straightforward, due to stuff getting serialized in -mm.
quoted
I'm getting pretty close to having a version of read-tree that does the trivial merge portion based comparing the sides against all of the shared heads. I think yours will be better for the cases we've identified, giving the correct answer for Tony's case rather than reporting a conflict, but it's clearly more complicated. I think my changes are worthwhile anyway, since they make the merging logic more central, but obviously insufficient. I've been thinking that could be useful to have read-tree figure out the history itself, instead of being passed ancestors, in which case it could use your method, except more efficiently (and only look further at the history when needed).It will be interesting to have a look at the code when you are done. I find the Git architecture with respect to merging to be quite nice. A core which handles the simple cases _fast_ and let the more complicated cases be handled by someone else.
Right; I'm mostly just trying to get the fast path to not miss cases that are more complicated than they look. -Daniel *This .sig left intentionally blank*