diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2022-11-10 23:36:46 +0700 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-11-11 17:06:02 -0500 |
commit | 73fce29427071e53d2650d7f201cf44d3c941e3b (patch) | |
tree | 15dce61b4312038342dbe2daa6c2adebfa23653d /git.c | |
parent | 0da4b538e40f38f2ee7adc625cac18ae0d8df4d1 (diff) | |
download | git-73fce29427071e53d2650d7f201cf44d3c941e3b.tar.gz |
Turn `git bisect` into a full built-in
Now that the shell script hands off to the `bisect--helper` to do
_anything_ (except to show the help), it is but a tiny step to let the
helper implement the actual `git bisect` command instead.
This retires `git-bisect.sh`, concluding a multi-year journey that many
hands helped with, in particular Pranit Bauna, Tanushree Tumane and
Miriam Rubio.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }, |