]> Pileus Git - ~andy/git/commitdiff
completion.bash: add 'skip' and 'run' to git-bisect
authorDmitry Potapov <dpotapov@gmail.com>
Wed, 2 Jul 2008 13:29:50 +0000 (17:29 +0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Jul 2008 08:06:22 +0000 (01:06 -0700)
Signed-off-by: Dmitry Potapov <dpotapov@gmail.com>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/completion/git-completion.bash

index 3f46149853237fcded15d498f94b4ae3b174b79c..d54aa8d62c86622cd997983f26d86ccf2c85b45b 100755 (executable)
@@ -511,7 +511,7 @@ _git_add ()
 
 _git_bisect ()
 {
-       local subcommands="start bad good reset visualize replay log"
+       local subcommands="start bad good skip reset visualize replay log run"
        local subcommand="$(__git_find_subcommand "$subcommands")"
        if [ -z "$subcommand" ]; then
                __gitcomp "$subcommands"
@@ -519,7 +519,7 @@ _git_bisect ()
        fi
 
        case "$subcommand" in
-       bad|good|reset)
+       bad|good|reset|skip)
                __gitcomp "$(__git_refs)"
                ;;
        *)