diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2007-10-29 05:31:52 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-29 13:13:01 -0700 |
commit | 6ca8b977e4f678050db8fcb0eec2091dd44a2bd0 (patch) | |
tree | b94b3162fa62face33d08c9dad5dcce2a23f2f5a /git-bisect.sh | |
parent | 71b0251cdd2cc35a983e21d4e71285db56d2a519 (diff) | |
download | git-6ca8b977e4f678050db8fcb0eec2091dd44a2bd0.tar.gz |
Bisect: add "skip" to the short usage string.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 180c6c280c..b74f44df60 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -1,12 +1,14 @@ #!/bin/sh -USAGE='[start|bad|good|next|reset|visualize|replay|log|run]' +USAGE='[start|bad|good|skip|next|reset|visualize|replay|log|run]' LONG_USAGE='git bisect start [<bad> [<good>...]] [--] [<pathspec>...] reset bisect state and start bisection. git bisect bad [<rev>] mark <rev> a known-bad revision. git bisect good [<rev>...] mark <rev>... known-good revisions. +git bisect skip [<rev>...] + mark <rev>... untestable revisions. git bisect next find next bisection to test and check it out. git bisect reset [<branch>] @@ -17,8 +19,6 @@ git bisect replay <logfile> replay bisection log. git bisect log show bisect log. -git bisect skip [<rev>...] - mark <rev>... untestable revisions. git bisect run <cmd>... use <cmd>... to automatically bisect.' |