2009-03-26 07:55:54 +03:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
#include "bisect.h"
|
|
|
|
|
|
|
|
static const char * const git_bisect_helper_usage[] = {
|
2009-04-19 13:56:07 +04:00
|
|
|
"git bisect--helper --next-exit",
|
2009-03-26 07:55:54 +03:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2009-04-19 13:56:07 +04:00
|
|
|
int next_exit = 0;
|
2009-03-26 07:55:54 +03:00
|
|
|
struct option options[] = {
|
2009-04-19 13:56:07 +04:00
|
|
|
OPT_BOOLEAN(0, "next-exit", &next_exit,
|
|
|
|
"output bisect result and exit instuctions"),
|
2009-03-26 07:55:54 +03:00
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
argc = parse_options(argc, argv, options, git_bisect_helper_usage, 0);
|
|
|
|
|
2009-04-21 09:54:09 +04:00
|
|
|
if (!next_exit)
|
2009-03-26 07:55:54 +03:00
|
|
|
usage_with_options(git_bisect_helper_usage, options);
|
|
|
|
|
2009-04-21 09:54:09 +04:00
|
|
|
/* next-exit */
|
|
|
|
return bisect_next_exit(prefix);
|
2009-03-26 07:55:54 +03:00
|
|
|
}
|