| 1429 | } |
| 1430 | |
| 1431 | static int cmd_bisect__run(int argc, const char **argv, const char *prefix UNUSED, |
| 1432 | struct repository *repo UNUSED) |
| 1433 | { |
| 1434 | int res; |
| 1435 | struct bisect_terms terms = { 0 }; |
| 1436 | |
| 1437 | if (!argc) |
| 1438 | return error(_("'%s' failed: no command provided."), "git bisect run"); |
| 1439 | get_terms(&terms); |
| 1440 | res = bisect_run(&terms, argc, argv); |
| 1441 | free_terms(&terms); |
| 1442 | return res; |
| 1443 | } |
| 1444 | |
| 1445 | int cmd_bisect(int argc, |
| 1446 | const char **argv, |
nothing calls this directly
no test coverage detected