Git fork

builtin/merge-recursive: switch to using merge_ort_generic()

Switch from merge-recursive to merge-ort. Adjust the following
testcases due to the switch:

* t6430: most of the test differences here were due to improved D/F
conflict handling explained in more detail in ef527787089c (merge
tests: expect improved directory/file conflict handling in ort,
2020-10-26). These changes weren't made to this test back in that
commit simply because I had been looking at `git merge` rather than
`git merge-recursive`. The final test in this testsuite, though, was
expunged because it was looking for specific output, and the calls to
output_commit_title() were discarded from merge_ort_internal() in its
adaptation from merge_recursive_internal(); see 8119214f4e70
(merge-ort: implement merge_incore_recursive(), 2020-12-16).

* t6434: This test is built entirely around rename/delete conflicts,
which had a suboptimal handling under merge-recursive. As explained
in more detail in commits 1f3c9ba707 ("t6425: be more flexible with
rename/delete conflict messages", 2020-08-10) and 727c75b23f ("t6404,
t6423: expect improved rename/delete handling in ort backend",
2020-10-26), rename/delete conflicts should each have two entries in
the index rather than just one. Adjust the expectations for all the
tests in this testcase to see the two entries per rename/delete
conflict.

* t6424: merge-recursive had a special check-if-toplevel-trees-match
check that it ran at the beginning on both the merge-base and the
other side being merged in. In such a case, it exited early and
printed an "Already up to date." message. merge-ort got rid of
this, and instead checks the merge base tree matching the other
side throughout the tree instead of just at the toplevel, allowing
it to avoid recursing into various subtrees. As part of that, it
got rid of the specialty toplevel message. That message hasn't
been missed for years from `git merge`, so I don't think it is
necessary to keep it just for `git merge-recursive`, especially
since the latter is rarely used. (git itself only references it
in the testsuite, whereas it used to power one of the three
rebase backends that existed once upon a time.)

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Elijah Newren and committed by
Junio C Hamano
77c02949 b5dff2bd

+22 -45
+2 -2
builtin/merge-recursive.c
··· 3 3 #include "advice.h" 4 4 #include "gettext.h" 5 5 #include "hash.h" 6 - #include "merge-recursive.h" 6 + #include "merge-ort-wrappers.h" 7 7 #include "object-name.h" 8 8 9 9 static const char builtin_merge_recursive_usage[] = ··· 89 89 if (o.verbosity >= 3) 90 90 printf(_("Merging %s with %s\n"), o.branch1, o.branch2); 91 91 92 - failed = merge_recursive_generic(&o, &h1, &h2, bases_count, bases, &result); 92 + failed = merge_ort_generic(&o, &h1, &h2, bases_count, bases, &result); 93 93 94 94 free(better1); 95 95 free(better2);
+3 -1
t/t6424-merge-unrelated-index-changes.sh
··· 176 176 # Make index match B 177 177 git diff C B -- | git apply --cached && 178 178 test_when_finished "git clean -fd" && # Do not leave untracked around 179 + git write-tree >index-before && 179 180 # Merge B & F, with B as "head" 180 181 git merge-recursive A -- B F > out && 181 - test_grep "Already up to date" out 182 + git write-tree >index-after && 183 + test_cmp index-before index-after 182 184 ' 183 185 184 186 test_expect_success 'recursive, when file has staged changes not matching HEAD nor what a merge would give' '
+8 -35
t/t6430-merge-recursive.sh
··· 373 373 374 374 git ls-files -s >actual && 375 375 ( 376 - echo "100644 $o0 1 a" && 377 - echo "100644 $o1 2 a" && 378 376 echo "100644 $o4 0 a/c" && 377 + echo "100644 $o0 1 a~$c1" && 378 + echo "100644 $o1 2 a~$c1" && 379 379 echo "100644 $o0 0 b" && 380 380 echo "100644 $o0 0 c" && 381 381 echo "100644 $o1 0 d/e" ··· 397 397 398 398 git ls-files -s >actual && 399 399 ( 400 - echo "100644 $o0 1 a" && 401 - echo "100644 $o1 3 a" && 402 400 echo "100644 $o4 0 a/c" && 401 + echo "100644 $o0 1 a~$c1" && 402 + echo "100644 $o1 3 a~$c1" && 403 403 echo "100644 $o0 0 b" && 404 404 echo "100644 $o0 0 c" && 405 405 echo "100644 $o1 0 d/e" ··· 424 424 echo "100644 $o1 0 a" && 425 425 echo "100644 $o0 0 b" && 426 426 echo "100644 $o0 0 c" && 427 - echo "100644 $o6 3 d" && 428 427 echo "100644 $o0 1 d/e" && 429 - echo "100644 $o1 2 d/e" 428 + echo "100644 $o1 2 d/e" && 429 + echo "100644 $o6 3 d~$c6" 430 430 ) >expected && 431 431 test_cmp expected actual 432 432 ··· 448 448 echo "100644 $o1 0 a" && 449 449 echo "100644 $o0 0 b" && 450 450 echo "100644 $o0 0 c" && 451 - echo "100644 $o6 2 d" && 452 451 echo "100644 $o0 1 d/e" && 453 - echo "100644 $o1 3 d/e" 452 + echo "100644 $o1 3 d/e" && 453 + echo "100644 $o6 2 d~$c6" 454 454 ) >expected && 455 455 test_cmp expected actual 456 456 ··· 694 694 695 695 test_tick && 696 696 git merge other 697 - ' 698 - 699 - test_expect_success 'merge-recursive remembers the names of all base trees' ' 700 - git reset --hard HEAD && 701 - 702 - # make the index match $c1 so that merge-recursive below does not 703 - # fail early 704 - git diff --binary HEAD $c1 -- | git apply --cached && 705 - 706 - # more trees than static slots used by oid_to_hex() 707 - for commit in $c0 $c2 $c4 $c5 $c6 $c7 708 - do 709 - git rev-parse "$commit^{tree}" || return 1 710 - done >trees && 711 - 712 - # ignore the return code; it only fails because the input is weird... 713 - test_must_fail git -c merge.verbosity=5 merge-recursive $(cat trees) -- $c1 $c3 >out && 714 - 715 - # ...but make sure it fails in the expected way 716 - test_grep CONFLICT.*rename/rename out && 717 - 718 - # merge-recursive prints in reverse order, but we do not care 719 - sort <trees >expect && 720 - sed -n "s/^virtual //p" out | sort >actual && 721 - test_cmp expect actual && 722 - 723 - git clean -fd 724 697 ' 725 698 726 699 test_expect_success 'merge-recursive internal merge resolves to the sameness' '
+9 -7
t/t6434-merge-recursive-rename-options.sh
··· 34 34 get_expected_stages () { 35 35 git checkout rename -- $1-new && 36 36 git ls-files --stage $1-new >expected-stages-undetected-$1 && 37 - sed "s/ 0 / 2 /" <expected-stages-undetected-$1 \ 37 + git ls-tree HEAD^ $1-old >tmp && 38 + git ls-tree HEAD $1-new >>tmp && 39 + cat tmp | awk '{print $1 " " $3 " " NR "\t" '$1'"-new"}' \ 38 40 >expected-stages-detected-$1 && 39 41 git read-tree -u --reset HEAD 40 42 } ··· 51 53 52 54 check_common () { 53 55 git ls-files --stage >stages-actual && 54 - test_line_count = 4 stages-actual 56 + test_line_count = $1 stages-actual 55 57 } 56 58 57 59 check_threshold_0 () { 58 - check_common && 60 + check_common 8 && 59 61 rename_detected 0 && 60 62 rename_detected 1 && 61 63 rename_detected 2 && ··· 63 65 } 64 66 65 67 check_threshold_1 () { 66 - check_common && 68 + check_common 7 && 67 69 rename_undetected 0 && 68 70 rename_detected 1 && 69 71 rename_detected 2 && ··· 71 73 } 72 74 73 75 check_threshold_2 () { 74 - check_common && 76 + check_common 6 && 75 77 rename_undetected 0 && 76 78 rename_undetected 1 && 77 79 rename_detected 2 && ··· 79 81 } 80 82 81 83 check_exact_renames () { 82 - check_common && 84 + check_common 5 && 83 85 rename_undetected 0 && 84 86 rename_undetected 1 && 85 87 rename_undetected 2 && ··· 87 89 } 88 90 89 91 check_no_renames () { 90 - check_common && 92 + check_common 4 && 91 93 rename_undetected 0 && 92 94 rename_undetected 1 && 93 95 rename_undetected 2 &&