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

Function cmd_bisect__skip

builtin/bisect.c:1406–1417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1404}
1405
1406static int cmd_bisect__skip(int argc, const char **argv, const char *prefix UNUSED,
1407 struct repository *repo UNUSED)
1408{
1409 int res;
1410 struct bisect_terms terms = { 0 };
1411
1412 set_terms(&terms, "bad", "good");
1413 get_terms(&terms);
1414 res = bisect_skip(&terms, argc, argv);
1415 free_terms(&terms);
1416 return res;
1417}
1418
1419static int cmd_bisect__visualize(int argc, const char **argv, const char *prefix UNUSED,
1420 struct repository *repo UNUSED)

Callers

nothing calls this directly

Calls 4

set_termsFunction · 0.85
get_termsFunction · 0.85
bisect_skipFunction · 0.85
free_termsFunction · 0.85

Tested by

no test coverage detected