summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-12-14 06:55:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-12-14 06:55:45 (GMT)
commitbee6e7a8f9951e486827bdebd14ab6d93b50a1bf (patch)
treebe5f44aad33cae285fe2f08983be87e4c4ecc400 /git.c
parentc48035d29b4e524aed3a32f0403676f0d9128863 (diff)
parent049141dce971bdbb85b3c6d12aae7254e7ddbe68 (diff)
downloadgit-bee6e7a8f9951e486827bdebd14ab6d93b50a1bf.zip
git-bee6e7a8f9951e486827bdebd14ab6d93b50a1bf.tar.gz
git-bee6e7a8f9951e486827bdebd14ab6d93b50a1bf.tar.bz2
Merge branch 'dd/git-bisect-builtin'
`git bisect` becomes a builtin. * dd/git-bisect-builtin: bisect; remove unused "git-bisect.sh" and ".gitignore" entry Turn `git bisect` into a full built-in bisect--helper: log: allow arbitrary number of arguments bisect--helper: handle states directly bisect--helper: emit usage for "git bisect" bisect test: test exit codes on bad usage bisect--helper: identify as bisect when report error bisect-run: verify_good: account for non-negative exit status bisect run: keep some of the post-v2.30.0 output bisect: fix output regressions in v2.30.0 bisect: refactor bisect_run() to match CodingGuidelines bisect tests: test for v2.30.0 "bisect run" regressions
Diffstat (limited to 'git.c')
-rw-r--r--git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.c b/git.c
index 10202a7..277a8cc 100644
--- a/git.c
+++ b/git.c
@@ -492,7 +492,7 @@ static struct cmd_struct commands[] = {
{ "annotate", cmd_annotate, RUN_SETUP },
{ "apply", cmd_apply, RUN_SETUP_GENTLY },
{ "archive", cmd_archive, RUN_SETUP_GENTLY },
- { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
+ { "bisect", cmd_bisect, RUN_SETUP },
{ "blame", cmd_blame, RUN_SETUP },
{ "branch", cmd_branch, RUN_SETUP | DELAY_PAGER_CONFIG },
{ "bugreport", cmd_bugreport, RUN_SETUP_GENTLY },