With the original functionality moved to bisect--helper there is no need for them in git-bisect.sh anymore. Signed-off-by: Carlo Marcelo Arenas Belón <carenas@xxxxxxxxx> --- git-bisect.sh | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/git-bisect.sh b/git-bisect.sh index 2da0810b1a..d6debcbb87 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -1,41 +1,7 @@ #!/bin/sh -USAGE='[help|start|bad|good|new|old|terms|skip|next|reset|visualize|view|replay|log|run]' -LONG_USAGE='git bisect help - print this long help message. -git bisect start [--term-{old,good}=<term> --term-{new,bad}=<term>] - [--no-checkout] [<bad> [<good>...]] [--] [<pathspec>...] - reset bisect state and start bisection. -git bisect (bad|new) [<rev>] - mark <rev> a known-bad revision/ - a revision after change in a given property. -git bisect (good|old) [<rev>...] - mark <rev>... known-good revisions/ - revisions before change in a given property. -git bisect terms [--term-good | --term-bad] - show the terms used for old and new commits (default: bad, good) -git bisect skip [(<rev>|<range>)...] - mark <rev>... untestable revisions. -git bisect next - find next bisection to test and check it out. -git bisect reset [<commit>] - finish bisection search and go back to commit. -git bisect (visualize|view) - show bisect status in gitk. -git bisect replay <logfile> - replay bisection log. -git bisect log - show bisect log. -git bisect run <cmd>... - use <cmd>... to automatically bisect. - -Please use "git help bisect" to get the full man page.' - -OPTIONS_SPEC= . git-sh-setup -_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' -_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40" TERM_BAD=bad TERM_GOOD=good base-commit: 011eca7cfdb7f13ee285c00dfe9ea576ec1166a7 -- 2.27.0.rc1.181.g8d5cacc8d1