Skip to content

Commit 911aba1

Browse files
mirucamgitster
authored andcommitted
bisect--helper: retire --bisect-next-check subcommand
After reimplementation of `git bisect run` in C, `--bisect-next-check` subcommand is not needed anymore. Let's remove it from options list and code. Mentored by: Christian Couder <[email protected]> Signed-off-by: Miriam Rubio <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d1bbbe4 commit 911aba1

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

builtin/bisect--helper.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ static GIT_PATH_FUNC(git_path_bisect_run, "BISECT_RUN")
2222

2323
static const char * const git_bisect_helper_usage[] = {
2424
N_("git bisect--helper --bisect-reset [<commit>]"),
25-
N_("git bisect--helper --bisect-next-check <good_term> <bad_term> [<term>]"),
2625
N_("git bisect--helper --bisect-terms [--term-good | --term-old | --term-bad | --term-new]"),
2726
N_("git bisect--helper --bisect-start [--term-{new,bad}=<term> --term-{old,good}=<term>]"
2827
" [--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<paths>...]"),
@@ -1230,12 +1229,6 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
12301229
return error(_("--bisect-reset requires either no argument or a commit"));
12311230
res = bisect_reset(argc ? argv[0] : NULL);
12321231
break;
1233-
case BISECT_NEXT_CHECK:
1234-
if (argc != 2 && argc != 3)
1235-
return error(_("--bisect-next-check requires 2 or 3 arguments"));
1236-
set_terms(&terms, argv[1], argv[0]);
1237-
res = bisect_next_check(&terms, argc == 3 ? argv[2] : NULL);
1238-
break;
12391232
case BISECT_TERMS:
12401233
if (argc > 1)
12411234
return error(_("--bisect-terms requires 0 or 1 argument"));

0 commit comments

Comments
 (0)