MCPcopy Create free account
hub / github.com/git/git / cmd_bisect__run

Function cmd_bisect__run

builtin/bisect.c:1431–1443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1429}
1430
1431static 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
1445int cmd_bisect(int argc,
1446 const char **argv,

Callers

nothing calls this directly

Calls 4

errorFunction · 0.85
get_termsFunction · 0.85
bisect_runFunction · 0.85
free_termsFunction · 0.85

Tested by

no test coverage detected