Skip to content

Commit 8d55225

Browse files
newrengitster
authored andcommitted
merge: make merge.renormalize work for all uses of merge machinery
The 'merge' command is not the only one that does merges; other commands like checkout -m or rebase do as well. Unfortunately, the only area of the code that checked for the "merge.renormalize" config setting was in builtin/merge.c, meaning it could only affect merges performed by the "merge" command. Move the handling of this config setting to merge_recursive_config() so that other commands can benefit from it as well. Fixes a few tests in t6038. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6f6e7cf commit 8d55225

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

builtin/checkout.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -771,13 +771,6 @@ static int merge_working_tree(const struct checkout_opts *opts,
771771
*/
772772

773773
add_files_to_cache(NULL, NULL, 0);
774-
/*
775-
* NEEDSWORK: carrying over local changes
776-
* when branches have different end-of-line
777-
* normalization (or clean+smudge rules) is
778-
* a pain; plumb in an option to set
779-
* o.renormalize?
780-
*/
781774
init_merge_options(&o, the_repository);
782775
o.verbosity = 0;
783776
work = write_in_core_index_as_tree(the_repository);

builtin/merge.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ static const char **xopts;
7272
static size_t xopts_nr, xopts_alloc;
7373
static const char *branch;
7474
static char *branch_mergeoptions;
75-
static int option_renormalize;
7675
static int verbosity;
7776
static int allow_rerere_auto;
7877
static int abort_current_merge;
@@ -621,8 +620,6 @@ static int git_merge_config(const char *k, const char *v, void *cb)
621620
return git_config_string(&pull_octopus, k, v);
622621
else if (!strcmp(k, "commit.cleanup"))
623622
return git_config_string(&cleanup_arg, k, v);
624-
else if (!strcmp(k, "merge.renormalize"))
625-
option_renormalize = git_config_bool(k, v);
626623
else if (!strcmp(k, "merge.ff")) {
627624
int boolval = git_parse_maybe_bool(v);
628625
if (0 <= boolval) {
@@ -721,7 +718,6 @@ static int try_merge_strategy(const char *strategy, struct commit_list *common,
721718
if (!strcmp(strategy, "subtree"))
722719
o.subtree_shift = "";
723720

724-
o.renormalize = option_renormalize;
725721
o.show_rename_progress =
726722
show_progress == -1 ? isatty(2) : show_progress;
727723

merge-recursive.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3791,9 +3791,12 @@ int merge_recursive_generic(struct merge_options *opt,
37913791
static void merge_recursive_config(struct merge_options *opt)
37923792
{
37933793
char *value = NULL;
3794+
int renormalize = 0;
37943795
git_config_get_int("merge.verbosity", &opt->verbosity);
37953796
git_config_get_int("diff.renamelimit", &opt->rename_limit);
37963797
git_config_get_int("merge.renamelimit", &opt->rename_limit);
3798+
git_config_get_bool("merge.renormalize", &renormalize);
3799+
opt->renormalize = renormalize;
37973800
if (!git_config_get_string("diff.renames", &value)) {
37983801
opt->detect_renames = git_config_rename("diff.renames", value);
37993802
free(value);

t/t6038-merge-text-auto.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ test_expect_success 'Detect LF/CRLF conflict from addition of text=auto' '
158158
compare_files expected file.fuzzy
159159
'
160160

161-
test_expect_failure 'checkout -m after setting text=auto' '
161+
test_expect_success 'checkout -m after setting text=auto' '
162162
cat <<-\EOF >expected &&
163163
first line
164164
same line
@@ -173,7 +173,7 @@ test_expect_failure 'checkout -m after setting text=auto' '
173173
git diff --no-index --ignore-cr-at-eol expected file
174174
'
175175

176-
test_expect_failure 'checkout -m addition of text=auto' '
176+
test_expect_success 'checkout -m addition of text=auto' '
177177
cat <<-\EOF >expected &&
178178
first line
179179
same line

0 commit comments

Comments
 (0)