3 #include "parse-options.h"
6 static const char * const git_bisect_helper_usage[] = {
7 "git bisect--helper --next-vars",
11 int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
14 struct option options[] = {
15 OPT_BOOLEAN(0, "next-vars", &next_vars,
16 "output next bisect step variables"),
20 argc = parse_options(argc, argv, options, git_bisect_helper_usage, 0);
23 usage_with_options(git_bisect_helper_usage, options);
26 return bisect_next_vars(prefix);