diff options
author | Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> | 2007-02-06 18:28:32 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-06 13:58:03 -0800 |
commit | 4ef40cdbe8661586053acbde34c8f89883b6f94a (patch) | |
tree | 5c58ac4f17941cad48fcf9cf1d1752ca65593d2c /git-bisect.sh | |
parent | e68989a739d8b1c5effb898d1ac78d27ca9d313a (diff) | |
download | git-4ef40cdbe8661586053acbde34c8f89883b6f94a.tar.gz git-4ef40cdbe8661586053acbde34c8f89883b6f94a.tar.xz |
add replay and log to the usage string of git-bisect
Signed-off-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 24160ec51..b1c3a6b1c 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -1,6 +1,6 @@ #!/bin/sh -USAGE='[start|bad|good|next|reset|visualize]' +USAGE='[start|bad|good|next|reset|visualize|replay|log]' LONG_USAGE='git bisect start [<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. |