aboutsummaryrefslogtreecommitdiff
path: root/merge-recursive.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2010-09-20 02:28:49 -0600
committerJunio C Hamano <gitster@pobox.com>2010-09-29 17:32:38 -0700
commit605c1bcfc46b60f76dfb4f89f76029b7bb13d232 (patch)
tree8e5560d7f76d3f3e013d9cd9fff380bdde74c4ce /merge-recursive.c
parent09c01f856f65ffdde9a61708a5d74a372d68807a (diff)
downloadgit-605c1bcfc46b60f76dfb4f89f76029b7bb13d232.tar.gz
git-605c1bcfc46b60f76dfb4f89f76029b7bb13d232.tar.xz
merge-recursive: Nuke rename/directory conflict detection
Since we want to resolve merges in-core and then detect at the end whether D/F conflicts remain in the way, we should just apply renames in-core and let logic elsewhere check for D/F conflicts. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'merge-recursive.c')
-rw-r--r--merge-recursive.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/merge-recursive.c b/merge-recursive.c
index 771564f7f..9fde5a6f7 100644
--- a/merge-recursive.c
+++ b/merge-recursive.c
@@ -772,17 +772,6 @@ static void conflict_rename_rename_1to2(struct merge_options *o,
free(del[delp]);
}
-static void conflict_rename_dir(struct merge_options *o,
- struct rename *ren1,
- const char *branch1)
-{
- char *new_path = unique_path(o, ren1->pair->two->path, branch1);
- output(o, 1, "Renaming %s to %s instead", ren1->pair->one->path, new_path);
- remove_file(o, 0, ren1->pair->two->path, 0);
- update_file(o, 0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path);
- free(new_path);
-}
-
static void conflict_rename_rename_2to1(struct merge_options *o,
struct rename *ren1,
const char *branch1,
@@ -1043,13 +1032,6 @@ static int process_renames(struct merge_options *o,
if (!ren1->dst_entry->stages[2].mode !=
!ren1->dst_entry->stages[3].mode)
ren1->dst_entry->processed = 0;
- } else if (string_list_has_string(&o->current_directory_set, ren1_dst)) {
- clean_merge = 0;
- output(o, 1, "CONFLICT (rename/directory): Rename %s->%s in %s "
- " directory %s added in %s",
- ren1_src, ren1_dst, branch1,
- ren1_dst, branch2);
- conflict_rename_dir(o, ren1, branch1);
} else {
if (mfi.merge || !mfi.clean)
output(o, 1, "Renaming %s => %s", ren1_src, ren1_dst);