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

Function cmd_bisect__visualize

builtin/bisect.c:1419–1429  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1417}
1418
1419static int cmd_bisect__visualize(int argc, const char **argv, const char *prefix UNUSED,
1420 struct repository *repo UNUSED)
1421{
1422 int res;
1423 struct bisect_terms terms = { 0 };
1424
1425 get_terms(&terms);
1426 res = bisect_visualize(&terms, argc, argv);
1427 free_terms(&terms);
1428 return res;
1429}
1430
1431static int cmd_bisect__run(int argc, const char **argv, const char *prefix UNUSED,
1432 struct repository *repo UNUSED)

Callers

nothing calls this directly

Calls 3

get_termsFunction · 0.85
bisect_visualizeFunction · 0.85
free_termsFunction · 0.85

Tested by

no test coverage detected