2009-03-26 04:55:54 +00:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
#include "bisect.h"
|
|
|
|
|
|
|
|
static const char * const git_bisect_helper_usage[] = {
|
2012-08-20 12:31:53 +00:00
|
|
|
N_("git bisect--helper --next-all [--no-checkout]"),
|
2009-03-26 04:55:54 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2009-05-09 15:55:47 +00:00
|
|
|
int next_all = 0;
|
2011-08-04 12:01:00 +00:00
|
|
|
int no_checkout = 0;
|
2009-03-26 04:55:54 +00:00
|
|
|
struct option options[] = {
|
2013-08-03 11:51:19 +00:00
|
|
|
OPT_BOOL(0, "next-all", &next_all,
|
|
|
|
N_("perform 'git bisect next'")),
|
|
|
|
OPT_BOOL(0, "no-checkout", &no_checkout,
|
|
|
|
N_("update BISECT_HEAD instead of checking out the current commit")),
|
2009-03-26 04:55:54 +00:00
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
2009-05-23 18:53:12 +00:00
|
|
|
argc = parse_options(argc, argv, prefix, options,
|
|
|
|
git_bisect_helper_usage, 0);
|
2009-03-26 04:55:54 +00:00
|
|
|
|
2009-05-09 15:55:47 +00:00
|
|
|
if (!next_all)
|
2009-03-26 04:55:54 +00:00
|
|
|
usage_with_options(git_bisect_helper_usage, options);
|
|
|
|
|
2009-05-09 15:55:47 +00:00
|
|
|
/* next-all */
|
2011-08-04 12:01:00 +00:00
|
|
|
return bisect_next_all(prefix, no_checkout);
|
2009-03-26 04:55:54 +00:00
|
|
|
}
|