completion: add stash import, export

These newer commands lack completion; implement basic support for
options and arguments.

Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
D. Ben Knoble
2026-02-07 16:59:16 -05:00
committed by Junio C Hamano
parent 67ad42147a
commit bfc1b34859

View File

@@ -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')"
;;