| 1333 | } |
| 1334 | |
| 1335 | static int cmd_bisect__reset(int argc, const char **argv, const char *prefix UNUSED, |
| 1336 | struct repository *repo UNUSED) |
| 1337 | { |
| 1338 | if (argc > 1) |
| 1339 | return error(_("'%s' requires either no argument or a commit"), |
| 1340 | "git bisect reset"); |
| 1341 | return bisect_reset(argc ? argv[0] : NULL); |
| 1342 | } |
| 1343 | |
| 1344 | static int cmd_bisect__terms(int argc, const char **argv, const char *prefix UNUSED, |
| 1345 | struct repository *repo UNUSED) |
nothing calls this directly
no test coverage detected