From: Christian Couder Date: Mon, 29 Oct 2007 04:31:52 +0000 (+0100) Subject: Bisect: add "skip" to the short usage string. X-Git-Tag: v1.5.4-rc0~299^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/6ca8b977e4f678050db8fcb0eec2091dd44a2bd0?ds=inline;hp=--cc Bisect: add "skip" to the short usage string. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- 6ca8b977e4f678050db8fcb0eec2091dd44a2bd0 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 [ [...]] [--] [...] reset bisect state and start bisection. git bisect bad [] mark a known-bad revision. git bisect good [...] mark ... known-good revisions. +git bisect skip [...] + mark ... untestable revisions. git bisect next find next bisection to test and check it out. git bisect reset [] @@ -17,8 +19,6 @@ git bisect replay replay bisection log. git bisect log show bisect log. -git bisect skip [...] - mark ... untestable revisions. git bisect run ... use ... to automatically bisect.'