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

Function cmd_bisect__start

builtin/bisect.c:1358–1368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1356}
1357
1358static int cmd_bisect__start(int argc, const char **argv, const char *prefix UNUSED,
1359 struct repository *repo UNUSED)
1360{
1361 int res;
1362 struct bisect_terms terms = { 0 };
1363
1364 set_terms(&terms, "bad", "good");
1365 res = bisect_start(&terms, argc, argv);
1366 free_terms(&terms);
1367 return res;
1368}
1369
1370static int cmd_bisect__next(int argc, const char **argv UNUSED, const char *prefix,
1371 struct repository *repo UNUSED)

Callers

nothing calls this directly

Calls 3

set_termsFunction · 0.85
bisect_startFunction · 0.85
free_termsFunction · 0.85

Tested by

no test coverage detected