summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 71b0251)
raw | patch | inline | side by side (parent: 71b0251)
author | Christian Couder <chriscool@tuxfamily.org> | |
Mon, 29 Oct 2007 04:31:52 +0000 (05:31 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 29 Oct 2007 20:13:01 +0000 (13:13 -0700) |
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-bisect.sh | patch | blob | history |
diff --git a/git-bisect.sh b/git-bisect.sh
index 180c6c280c8dd2e9622dff26399a6b91540d54fd..b74f44df603fa38dd2954aebe7a56a8480450236 100755 (executable)
--- a/git-bisect.sh
+++ b/git-bisect.sh
#!/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>]
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.'