Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-05-11 09:27:21 +0300
committerJunio C Hamano <gitster@pobox.com>2021-05-11 09:27:22 +0300
commit8ca4771dd0889ce269780b5f2b48166ffaff9570 (patch)
tree861682757107951cca2ef20e9649b85367101f06 /builtin
parent49f38e2de47a401fc2b0f4cce38e9f07fb63df48 (diff)
parent4cd66e7d6b423d3c5b161b55afb07cb1df59e75f (diff)
Merge branch 'rj/bisect-skip-honor-terms'
"git bisect skip" when custom words are used for new/old did not work, which has been corrected. * rj/bisect-skip-honor-terms: bisect--helper: use BISECT_TERMS in 'bisect skip' command
Diffstat (limited to 'builtin')
-rw-r--r--builtin/bisect--helper.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/bisect--helper.c b/builtin/bisect--helper.c
index 1fdb7d9d10..9d9540a0ab 100644
--- a/builtin/bisect--helper.c
+++ b/builtin/bisect--helper.c
@@ -1126,6 +1126,7 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
break;
case BISECT_SKIP:
set_terms(&terms, "bad", "good");
+ get_terms(&terms);
res = bisect_skip(&terms, argv, argc);
break;
default: