3 #include "parse-options.h"
6 static const char * const git_bisect_helper_usage[] = {
7 "git bisect--helper --next-all",
11 int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
14 struct option options[] = {
15 OPT_BOOLEAN(0, "next-all", &next_all,
16 "perform 'git bisect next'"),
20 argc = parse_options(argc, argv, prefix, options,
21 git_bisect_helper_usage, 0);
24 usage_with_options(git_bisect_helper_usage, options);
27 return bisect_next_all(prefix);