I tried to merge the following scenario:
base: {}
left: {a}
right: {} {b}
This is what I want to happen:
base: {}
left: {a}
right: {} {b}
merged: {a} {b}
+ ++++
Instead a merge conflict happens because the following two blocks ends up being connected and compared:
The expected outcome would merge cleanly, whereas the second will generate a merge conflict.
I need to see if I can make the diff/merge algorithm less greedy in this case.