| 1342 | } |
| 1343 | |
| 1344 | static int cmd_bisect__terms(int argc, const char **argv, const char *prefix UNUSED, |
| 1345 | struct repository *repo UNUSED) |
| 1346 | { |
| 1347 | int res; |
| 1348 | struct bisect_terms terms = { 0 }; |
| 1349 | |
| 1350 | if (argc > 1) |
| 1351 | return error(_("'%s' requires 0 or 1 argument"), |
| 1352 | "git bisect terms"); |
| 1353 | res = bisect_terms(&terms, argc == 1 ? argv[0] : NULL); |
| 1354 | free_terms(&terms); |
| 1355 | return res; |
| 1356 | } |
| 1357 | |
| 1358 | static int cmd_bisect__start(int argc, const char **argv, const char *prefix UNUSED, |
| 1359 | struct repository *repo UNUSED) |
nothing calls this directly
no test coverage detected