Code

bisect--helper: remove "--next-vars" option as it is now useless
[git.git] / builtin-bisect--helper.c
1 #include "builtin.h"
2 #include "cache.h"
3 #include "parse-options.h"
4 #include "bisect.h"
6 static const char * const git_bisect_helper_usage[] = {
7         "git bisect--helper --next-exit",
8         NULL
9 };
11 int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
12 {
13         int next_exit = 0;
14         struct option options[] = {
15                 OPT_BOOLEAN(0, "next-exit", &next_exit,
16                             "output bisect result and exit instuctions"),
17                 OPT_END()
18         };
20         argc = parse_options(argc, argv, options, git_bisect_helper_usage, 0);
22         if (!next_exit)
23                 usage_with_options(git_bisect_helper_usage, options);
25         /* next-exit */
26         return bisect_next_exit(prefix);
27 }