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

Function cmd_bisect__reset

builtin/bisect.c:1335–1342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1333}
1334
1335static int cmd_bisect__reset(int argc, const char **argv, const char *prefix UNUSED,
1336 struct repository *repo UNUSED)
1337{
1338 if (argc > 1)
1339 return error(_("'%s' requires either no argument or a commit"),
1340 "git bisect reset");
1341 return bisect_reset(argc ? argv[0] : NULL);
1342}
1343
1344static int cmd_bisect__terms(int argc, const char **argv, const char *prefix UNUSED,
1345 struct repository *repo UNUSED)

Callers

nothing calls this directly

Calls 2

errorFunction · 0.85
bisect_resetFunction · 0.85

Tested by

no test coverage detected