Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-01-07 11:09:42 +0300
committerJunio C Hamano <gitster@pobox.com>2009-01-07 11:09:42 +0300
commitff32340669a5521ca2b4b547b4853bfe22f60386 (patch)
treebca331f6b19b2465ca5c71ab879ce03874f9be58 /merge-recursive.c
parent4c6e8aa8f001fa9619dc891c501d0d4389583353 (diff)
parent36e3b5eafe967cb721f5e2bbaa396f979b8ebd7c (diff)
Merge branch 'js/maint-merge-recursive-r-d-conflict'
* js/maint-merge-recursive-r-d-conflict: merge-recursive: mark rename/delete conflict as unmerged
Diffstat (limited to 'merge-recursive.c')
-rw-r--r--merge-recursive.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/merge-recursive.c b/merge-recursive.c
index 2da4333439..b97026bd5c 100644
--- a/merge-recursive.c
+++ b/merge-recursive.c
@@ -934,6 +934,11 @@ static int process_renames(struct merge_options *o,
ren1_src, ren1_dst, branch1,
branch2);
update_file(o, 0, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
+ update_stages(ren1_dst, NULL,
+ branch1 == o->branch1 ?
+ ren1->pair->two : NULL,
+ branch1 == o->branch1 ?
+ NULL : ren1->pair->two, 1);
} else if (!sha_eq(dst_other.sha1, null_sha1)) {
const char *new_path;
clean_merge = 0;