* [PATCH] completion.bash: add 'skip' and 'run' to git-bisect
@ 2008-07-02 13:29 Dmitry Potapov
2008-07-02 13:35 ` Shawn O. Pearce
0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Potapov @ 2008-07-02 13:29 UTC (permalink / raw)
To: Git Mailing List; +Cc: Dmitry Potapov
Signed-off-by: Dmitry Potapov <dpotapov@gmail.com>
---
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 ebf7cde..3d15434 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)"
;;
*)
--
1.5.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] completion.bash: add 'skip' and 'run' to git-bisect
2008-07-02 13:29 [PATCH] completion.bash: add 'skip' and 'run' to git-bisect Dmitry Potapov
@ 2008-07-02 13:35 ` Shawn O. Pearce
0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2008-07-02 13:35 UTC (permalink / raw)
To: Dmitry Potapov; +Cc: Git Mailing List
Dmitry Potapov <dpotapov@gmail.com> wrote:
> Signed-off-by: Dmitry Potapov <dpotapov@gmail.com>
Keeping up with the subcommands is a challenge. ;-)
Acked-by: Shawn O. Pearce <spearce@spearce.org>
> ---
> 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 ebf7cde..3d15434 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)"
> ;;
> *)
> --
--
Shawn.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-02 13:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-02 13:29 [PATCH] completion.bash: add 'skip' and 'run' to git-bisect Dmitry Potapov
2008-07-02 13:35 ` Shawn O. Pearce
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).