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