]> granicus.if.org Git - git/commitdiff
merge-recursive: find-renames resets threshold
authorFelipe Gonçalves Assis <felipeg.assis@gmail.com>
Sun, 21 Feb 2016 22:59:05 +0000 (19:59 -0300)
committerJunio C Hamano <gitster@pobox.com>
Wed, 24 Feb 2016 18:39:02 +0000 (10:39 -0800)
Make the find-renames option follow the behaviour in git-diff, where it
resets the threshold when none is given. So, for instance,
"--find-renames=25 --find-renames" should result in the default
threshold (50%) instead of 25%.

Signed-off-by: Felipe Gonçalves Assis <felipegassis@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
merge-recursive.c

index 7bff5be164ef0c853818754d8e1882aac23ac6b1..b880ae50e7ee4f8e88bda83618529ea30462e4ef 100644 (file)
@@ -2094,8 +2094,10 @@ int parse_merge_opt(struct merge_options *o, const char *s)
                o->renormalize = 0;
        else if (!strcmp(s, "no-renames"))
                o->detect_rename = 0;
-       else if (!strcmp(s, "find-renames"))
+       else if (!strcmp(s, "find-renames")) {
                o->detect_rename = 1;
+               o->rename_score = 0;
+       }
        else if (skip_prefix(s, "find-renames=", &arg) ||
                 skip_prefix(s, "rename-threshold=", &arg)) {
                if ((o->rename_score = parse_rename_score(&arg)) == -1 || *arg != 0)