aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-02-25 11:54:17 -0800
committerJunio C Hamano <gitster@pobox.com>2026-02-25 11:54:17 -0800
commitd21437a91623e3ff63f4620e486eef7088103d73 (patch)
tree104ff73f15ba85382d284d12cda850ec6b3201c0
parent1a46f31b3e1a0f739cb1b045861ba56bc126c6ee (diff)
parentbfc1b34859c973127cdef0cfba537c25ee39f763 (diff)
downloadgit-d21437a91623e3ff63f4620e486eef7088103d73.tar.xz
Merge branch 'dk/complete-stash-import-export'
Command line completion (in contrib/) update. * dk/complete-stash-import-export: completion: add stash import, export
-rw-r--r--contrib/completion/git-completion.bash10
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 538dff1ee5..a8e7c6ddbf 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -3465,7 +3465,7 @@ _git_sparse_checkout ()
_git_stash ()
{
- local subcommands='push list show apply clear drop pop create branch'
+ local subcommands='push list show apply clear drop pop create branch import export'
local subcommand="$(__git_find_on_cmdline "$subcommands save")"
if [ -z "$subcommand" ]; then
@@ -3491,6 +3491,9 @@ _git_stash ()
show,--*)
__gitcomp_builtin stash_show "$__git_diff_common_options"
;;
+ export,--*)
+ __gitcomp_builtin stash_export "--print --to-ref"
+ ;;
*,--*)
__gitcomp_builtin "stash_$subcommand"
;;
@@ -3502,7 +3505,10 @@ _git_stash ()
| sed -n -e 's/:.*//p')"
fi
;;
- show,*|apply,*|drop,*|pop,*)
+ import,*)
+ __git_complete_refs
+ ;;
+ show,*|apply,*|drop,*|pop,*|export,*)
__gitcomp_nl "$(__git stash list \
| sed -n -e 's/:.*//p')"
;;