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

Function cmd_bisect__terms

builtin/bisect.c:1344–1356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1342}
1343
1344static 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
1358static int cmd_bisect__start(int argc, const char **argv, const char *prefix UNUSED,
1359 struct repository *repo UNUSED)

Callers

nothing calls this directly

Calls 3

errorFunction · 0.85
free_termsFunction · 0.85
bisect_termsFunction · 0.70

Tested by

no test coverage detected