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[] = {
|
2009-04-19 11:56:07 +02:00
|
|
|
"git bisect--helper --next-exit",
|
2009-03-26 05:55:54 +01:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2009-04-19 11:56:07 +02:00
|
|
|
int next_exit = 0;
|
2009-03-26 05:55:54 +01:00
|
|
|
struct option options[] = {
|
2009-04-19 11:56:07 +02:00
|
|
|
OPT_BOOLEAN(0, "next-exit", &next_exit,
|
|
|
|
"output bisect result and exit instuctions"),
|
2009-03-26 05:55:54 +01:00
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
argc = parse_options(argc, argv, options, git_bisect_helper_usage, 0);
|
|
|
|
|
2009-04-21 07:54:09 +02:00
|
|
|
if (!next_exit)
|
2009-03-26 05:55:54 +01:00
|
|
|
usage_with_options(git_bisect_helper_usage, options);
|
|
|
|
|
2009-04-21 07:54:09 +02:00
|
|
|
/* next-exit */
|
|
|
|
return bisect_next_exit(prefix);
|
2009-03-26 05:55:54 +01:00
|
|
|
}
|