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

Function cmd_bisect__next

builtin/bisect.c:1370–1383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1368}
1369
1370static 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
1385static int cmd_bisect__log(int argc UNUSED, const char **argv UNUSED,
1386 const char *prefix UNUSED,

Callers

nothing calls this directly

Calls 4

errorFunction · 0.85
get_termsFunction · 0.85
bisect_nextFunction · 0.85
free_termsFunction · 0.85

Tested by

no test coverage detected