diff options
author | Dmitry Potapov <dpotapov@gmail.com> | 2008-07-02 17:29:50 +0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-07 01:06:22 -0700 |
commit | bf11d4613c647184bb081fa600f5c0ab8c0be909 (patch) | |
tree | e6ca0cdd4b2b34af59d3763f6152f619217cc932 /contrib/completion/git-completion.bash | |
parent | Merge git://repo.or.cz/git-gui (diff) | |
download | tgif-bf11d4613c647184bb081fa600f5c0ab8c0be909.tar.xz |
completion.bash: add 'skip' and 'run' to git-bisect
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>
Diffstat (limited to 'contrib/completion/git-completion.bash')
-rwxr-xr-x | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 3f46149853..d54aa8d62c 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -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)" ;; *) |