From: Lee Marlow <lee.marlow@gmail.com>
To: "Shawn O. Pearce" <spearce@spearce.org>
Cc: git@vger.kernel.org, Lee Marlow <lee.marlow@gmail.com>
Subject: [PATCH 5/8] bash completion: More completions for 'git stash'
Date: Mon, 4 Aug 2008 23:50:35 -0600 [thread overview]
Message-ID: <1217915438-6838-6-git-send-email-lee.marlow@gmail.com> (raw)
In-Reply-To: <1217915438-6838-5-git-send-email-lee.marlow@gmail.com>
Add branch subcommand to completions and USAGE for git-stash.sh.
Complete stash names for show, apply, drop, pop, and branch.
Add "--index" long option for apply.
Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
---
contrib/completion/git-completion.bash | 12 +++++++++++-
git-stash.sh | 2 +-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 6a5c4cd..a292cbd 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -1348,7 +1348,7 @@ _git_show_branch ()
_git_stash ()
{
- local subcommands='save list show apply clear drop pop create'
+ local subcommands='save list show apply clear drop pop create branch'
local subcommand="$(__git_find_subcommand "$subcommands")"
if [ -z "$subcommand" ]; then
__gitcomp "$subcommands"
@@ -1358,6 +1358,16 @@ _git_stash ()
save,--*)
__gitcomp "--keep-index"
;;
+ apply,--*)
+ __gitcomp "--index"
+ ;;
+ show,--*|apply,--*|drop,--*|pop,--*|branch,--*)
+ COMPREPLY=()
+ ;;
+ show,*|apply,*|drop,*|pop,*|branch,*)
+ __gitcomp "$(git --git-dir="$(__gitdir)" stash list \
+ | sed -n -e 's/:.*//p')"
+ ;;
*)
COMPREPLY=()
;;
diff --git a/git-stash.sh b/git-stash.sh
index d4609ed..5ad2c4b 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# Copyright (c) 2007, Nanako Shiraishi
-USAGE='[ | save | list | show | apply | clear | drop | pop | create ]'
+USAGE='[ | save | list | show | apply | clear | drop | pop | create | branch ]'
SUBDIRECTORY_OK=Yes
OPTIONS_SPEC=
--
1.6.0.rc1.48.g2b6032
next prev parent reply other threads:[~2008-08-05 5:52 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-05 5:50 [PATCH 0/8] bash completion: more porcelain completions Lee Marlow
2008-08-05 5:50 ` [PATCH 1/8] bash completion: Add completion for 'git clone' Lee Marlow
2008-08-05 5:50 ` [PATCH 2/8] bash completion: Add completion for 'git clean' Lee Marlow
2008-08-05 5:50 ` [PATCH 3/8] bash completion: Add completion for 'git init' Lee Marlow
2008-08-05 5:50 ` [PATCH 4/8] bash completion: Add completion for 'git revert' Lee Marlow
2008-08-05 5:50 ` Lee Marlow [this message]
2008-08-05 5:50 ` [PATCH 6/8] bash completion: Add completion for 'git archive' Lee Marlow
2008-08-05 5:50 ` [PATCH 7/8] bash completion: Add completion for 'git ls-files' Lee Marlow
2008-08-06 15:45 ` [PATCH] bash: remove redundant check for 'git stash apply' options SZEDER Gábor
2008-08-06 15:47 ` Shawn O. Pearce
2008-08-05 14:29 ` [PATCH 0/8] bash completion: more porcelain completions Shawn O. Pearce
2008-08-05 18:58 ` Junio C Hamano
2008-08-05 19:09 ` Shawn O. Pearce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1217915438-6838-6-git-send-email-lee.marlow@gmail.com \
--to=lee.marlow@gmail.com \
--cc=git@vger.kernel.org \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.