apply: respect merge.conflictStyle in --3way
Before, when doing a 3-way merge, the merge.conflictStyle option was not respected and the "merge" style was always used, even if "diff3" was specified. Call git_xmerge_config() at the end of git_apply_config() so that the merge.conflictStyle config is read. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
aa76ae4905
commit
091489d068
2
apply.c
2
apply.c
@ -32,7 +32,7 @@ static void git_apply_config(void)
|
||||
{
|
||||
git_config_get_string_const("apply.whitespace", &apply_default_whitespace);
|
||||
git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace);
|
||||
git_config(git_default_config, NULL);
|
||||
git_config(git_xmerge_config, NULL);
|
||||
}
|
||||
|
||||
static int parse_whitespace_option(struct apply_state *state, const char *option)
|
||||
|
@ -73,7 +73,7 @@ test_expect_success 'apply with --3way' '
|
||||
test_apply_with_3way
|
||||
'
|
||||
|
||||
test_expect_failure 'apply with --3way with merge.conflictStyle = diff3' '
|
||||
test_expect_success 'apply with --3way with merge.conflictStyle = diff3' '
|
||||
test_config merge.conflictStyle diff3 &&
|
||||
test_apply_with_3way
|
||||
'
|
||||
|
Loading…
Reference in New Issue
Block a user