Git implements a recursive 3-way merge strategy that solves problems with criss-crossing histories, but what problems does this strategy NOT solve?
The best account I've found so far is on the old revctrl wiki:
Recursive three-way merge usually provides the right answer, however there are some edge cases. For example, conflict markers can be matched incorrectly, because they aren't given any special semantic meaning for the merge algorithm, and are simply treated as lines. In particular, there are (somewhat complicated) cases where the conflict markers of two unrelated conflicts get matched against each other, even though the content sections of them are totally unrelated.
Also, recursive merge can do some of the same invalid merges as SimpleWeaveMerge does, which are described below, although exactly what it does under those circumstances is highly dependant on the details of the 3 way merge algorithm, but it isn't clear that tweaking the 3-way merge algorithm to be more conservative about showing conflicts will make such problems go away. Basically, including the conflict is creating a weave, and that introduces the problems which weaves have.
Finally, recursive three-way merge has all the inherent problems of ImplicitUndo. In particular, merging together multiple things which merge cleanly will sometimes give different answers depending on the order in which the merges happen. In fact, it's possible in a never-ending criss-cross case for a value to flip-flop until the end of time without ever getting a single unclean merge. This is a very fundamental problem, and fixing it requires first deciding what one wants to have happen in such cases, because what is appropriate behavior is unclear.
However, these problems are vaguely stated. What are specific situations where recursive 3-way merge breaks, and in what ways does it break?
Can anyone show some version control histories that it screws up?
(I'm NOT asking about problems in the diff algorithm, such as understanding source code semantics, or conflict resolution. Let's presume the user is happy resolving conflicts and using a naive string diff.)