| 1368 | } |
| 1369 | |
| 1370 | static int cmd_bisect__next(int argc, const char **argv UNUSED, const char *prefix, |
| 1371 | struct repository *repo UNUSED) |
| 1372 | { |
| 1373 | int res; |
| 1374 | struct bisect_terms terms = { 0 }; |
| 1375 | |
| 1376 | if (argc) |
| 1377 | return error(_("'%s' requires 0 arguments"), |
| 1378 | "git bisect next"); |
| 1379 | get_terms(&terms); |
| 1380 | res = bisect_next(&terms, prefix); |
| 1381 | free_terms(&terms); |
| 1382 | return res; |
| 1383 | } |
| 1384 | |
| 1385 | static int cmd_bisect__log(int argc UNUSED, const char **argv UNUSED, |
| 1386 | const char *prefix UNUSED, |
nothing calls this directly
no test coverage detected