Code

merge-recursive: add handling for rename/rename/add-dest/add-dest
authorElijah Newren <newren@gmail.com>
Fri, 12 Aug 2011 05:20:21 +0000 (23:20 -0600)
committerJunio C Hamano <gitster@pobox.com>
Sun, 14 Aug 2011 21:19:39 +0000 (14:19 -0700)
Each side of the rename in rename/rename(1to2) could potentially also be
involved in a rename/add conflict.  Ensure stages for such conflicts are
also recorded.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
merge-recursive.c
t/t6042-merge-rename-corner-cases.sh

index f29aaf7fc603f0223931929c8387743ab7ce1356..2059f25620410d0cbd5d2c3f19a233634b5e543c 100644 (file)
@@ -1071,6 +1071,19 @@ static void conflict_rename_delete(struct merge_options *o,
                             "rename", "renamed");
 }
 
+static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,
+                                                struct stage_data *entry,
+                                                int stage)
+{
+       unsigned char *sha = entry->stages[stage].sha;
+       unsigned mode = entry->stages[stage].mode;
+       if (mode == 0 || is_null_sha1(sha))
+               return NULL;
+       hashcpy(target->sha1, sha);
+       target->mode = mode;
+       return target;
+}
+
 static void conflict_rename_rename_1to2(struct merge_options *o,
                                        struct rename_conflict_info *ci)
 {
@@ -1116,8 +1129,12 @@ static void conflict_rename_rename_1to2(struct merge_options *o,
                remove_file_from_cache(a->path);
                remove_file_from_cache(b->path);
        } else {
-               update_stages(a->path, NULL, a, NULL);
-               update_stages(b->path, NULL, NULL, b);
+               struct diff_filespec other;
+               update_stages(a->path, NULL,
+                             a, filespec_from_entry(&other, ci->dst_entry1, 3));
+
+               update_stages(b->path, NULL,
+                             filespec_from_entry(&other, ci->dst_entry2, 2), b);
 
                update_file(o, 0, a->sha1, a->mode, dst_name_a);
                update_file(o, 0, b->sha1, b->mode, dst_name_b);
index 3be5059318cb96a3ef0fad7de03e273da79ba3e4..68759199120481b48da5b31e147e25e263f37b50 100755 (executable)
@@ -551,7 +551,7 @@ test_expect_success 'setup rename/rename(1to2)/add-dest conflict' '
        git commit -m two
 '
 
-test_expect_failure 'rename/rename/add-dest merge still knows about conflicting file versions' '
+test_expect_success 'rename/rename/add-dest merge still knows about conflicting file versions' '
        git checkout C^0 &&
        test_must_fail git merge -s recursive B^0 &&