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

Function do_bisect_run

builtin/bisect.c:1191–1199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1189}
1190
1191static int do_bisect_run(const char *command)
1192{
1193 struct child_process cmd = CHILD_PROCESS_INIT;
1194
1195 printf(_("running %s\n"), command);
1196 cmd.use_shell = 1;
1197 strvec_push(&cmd.args, command);
1198 return run_command(&cmd);
1199}
1200
1201static int verify_good(const struct bisect_terms *terms, const char *command)
1202{

Callers 2

verify_goodFunction · 0.85
bisect_runFunction · 0.85

Calls 2

strvec_pushFunction · 0.85
run_commandFunction · 0.85

Tested by

no test coverage detected