diff options
author | Denton Liu <liu.denton@gmail.com> | 2019-10-23 16:32:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-10-24 11:32:53 +0900 |
commit | 091489d068e0e812123f5114149bdb0e7d74c257 (patch) | |
tree | e3a909bb6301b162f455b2bd279caa839f512b2a /apply.c | |
parent | aa76ae4905c28e264f0affc58e36c1db692fa881 (diff) | |
download | git-091489d068e0e812123f5114149bdb0e7d74c257.tar.gz |
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>
Diffstat (limited to 'apply.c')
-rw-r--r-- | apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |