summaryrefslogtreecommitdiff
path: root/tests/resources/merge-recursive
Commit message (Collapse)AuthorAgeFilesLines
* merge: handle conflicts in recursive base buildingEdward Thomson2015-11-2524-0/+8
| | | | | | | | | | | | | | | | | When building a recursive merge base, allow conflicts to occur. Use the file (with conflict markers) as the common ancestor. The user has already seen and dealt with this conflict by virtue of having a criss-cross merge. If they resolved this conflict identically in both branches, then there will be no conflict in the result. This is the best case scenario. If they did not resolve the conflict identically in the two branches, then we will generate a new conflict. If the user is simply using standard conflict output then the results will be fairly sensible. But if the user is using a mergetool or using diff3 output, then the common ancestor will be a conflict file (itself with diff3 output, haha!). This is quite terrible, but it matches git's behavior.
* merge tests: add complex recursive exampleEdward Thomson2015-11-2511-6/+11
|
* merge: add recursive test with conflicting contentsEdward Thomson2015-11-258-0/+9
|
* merge: add recursive test with three merge basesEdward Thomson2015-11-2527-0/+19
|
* merge: add a third-level recursive mergeEdward Thomson2015-11-2512-0/+12
|
* merge: add a second-level recursive mergeEdward Thomson2015-11-2511-0/+9
|
* merge: add simple recursive testEdward Thomson2015-11-2568-0/+121
Add a simple recursive test - where multiple ancestors exist and creating a virtual merge base from them would prevent a conflict.