diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-11-10 10:02:15 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-10 10:02:15 +0100 |
commit | eff313f8a7ff64cb3097d185c55f5ce7271f4ee9 (patch) | |
tree | a33a22e1d92e607654fb64fb3ab04ffd1786b4cd /apply.c | |
parent | Merge branch 'sg/dir-trie-fixes' (diff) | |
parent | apply: respect merge.conflictStyle in --3way (diff) | |
download | git-eff313f8a7ff64cb3097d185c55f5ce7271f4ee9.tar.xz git-eff313f8a7ff64cb3097d185c55f5ce7271f4ee9.zip |
Merge branch 'dl/apply-3way-diff3'
"git apply --3way" learned to honor merge.conflictStyle
configuration variable, like merges would.
* dl/apply-3way-diff3:
apply: respect merge.conflictStyle in --3way
t4108: demonstrate bug in apply
t4108: use `test_config` instead of `git config`
t4108: remove git command upstream of pipe
t4108: replace create_file with test_write_lines
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) |