When a D/F conflict is introduced via an add/add conflict, when o->call_depth > 0 we need to ensure that the higher stage entry from the base stage is removed. Signed-off-by: Elijah Newren <newren@xxxxxxxxx> --- merge-recursive.c | 2 ++ t/t6036-recursive-corner-cases.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/merge-recursive.c b/merge-recursive.c index 7da6aa0..4771fb4 100644 --- a/merge-recursive.c +++ b/merge-recursive.c @@ -1480,6 +1480,8 @@ static int process_df_entry(struct merge_options *o, "Adding %s as %s", conf, path, other_branch, path, new_path); update_file(o, 0, sha, mode, new_path); + if (o->call_depth) + remove_file_from_cache(path); free(new_path); } else { output(o, 2, "Adding %s", path); diff --git a/t/t6036-recursive-corner-cases.sh b/t/t6036-recursive-corner-cases.sh index 2fa7c3e..423fb62 100755 --- a/t/t6036-recursive-corner-cases.sh +++ b/t/t6036-recursive-corner-cases.sh @@ -494,7 +494,7 @@ test_expect_failure 'git detects conflict and handles merge of D & E1 correctly' test $(git rev-parse :2:a) = $(git rev-parse B:a) ' -test_expect_failure 'git detects conflict and handles merge of E1 & D correctly' ' +test_expect_success 'git detects conflict and handles merge of E1 & D correctly' ' git reset --hard && git reset --hard && git clean -fdqx && @@ -528,7 +528,7 @@ test_expect_success 'git detects conflict and handles merge of D & E2 correctly' test $(git rev-parse :1:a/file) = $(git rev-parse C:a/file) ' -test_expect_failure 'git detects conflict and handles merge of E2 & D correctly' ' +test_expect_success 'git detects conflict and handles merge of E2 & D correctly' ' git reset --hard && git reset --hard && git clean -fdqx && -- 1.7.6.rc0.62.g2d69f -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html