apply: allow rerere() to work on --3way results
authorJunio C Hamano <gitster@pobox.com>
Thu, 10 May 2012 20:56:49 +0000 (13:56 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Jul 2012 21:40:03 +0000 (14:40 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/apply.c
t/t4108-apply-threeway.sh

index dc52c9475e5f250912b01c80a261185d0b9034b9..cd68862aa888c37453f386c2f1231335c6c4bf96 100644 (file)
@@ -18,6 +18,7 @@
 #include "parse-options.h"
 #include "xdiff-interface.h"
 #include "ll-merge.h"
+#include "rerere.h"
 
 /*
  *  --check turns on checking that the working tree matches the
@@ -4026,6 +4027,8 @@ static int write_out_results(struct patch *list)
                for_each_string_list_item(item, &cpath)
                        fprintf(stderr, "U %s\n", item->string);
                string_list_clear(&cpath, 0);
+
+               rerere(0);
        }
 
        return errs;
index 475dfb57eee051f13c75bbf810938b54c752bad5..e6d4da63b22c8a3df3d1dd075a8ebb88fb98e1d1 100755 (executable)
@@ -75,4 +75,29 @@ test_expect_success 'apply with --3way' '
        test_cmp expect.diff actual.diff
 '
 
+test_expect_success 'apply with --3way with rerere enabled' '
+       git config rerere.enabled true &&
+
+       # Merging side should be similar to applying this patch
+       git diff ...side >P.diff &&
+
+       # The corresponding conflicted merge
+       git reset --hard &&
+       git checkout master^0 &&
+       test_must_fail git merge --no-commit side &&
+
+       # Manually resolve and record the resolution
+       create_file 1 two 3 4 five six 7 >one &&
+       git rerere &&
+       cat one >expect &&
+
+       # should fail to apply
+       git reset --hard &&
+       git checkout master^0 &&
+       test_must_fail git apply --index --3way P.diff &&
+
+       # but rerere should have replayed the recorded resolution
+       test_cmp expect one
+'
+
 test_done