Merge branch 'sg/completion'
* sg/completion: bash: support pretty format aliases bash: support more 'git notes' subcommands and their options bash: not all 'git bisect' subcommands make sense when not bisecting bash: offer refs for 'git bisect start'
This commit is contained in:
commit
67405b9965
@ -756,6 +756,19 @@ __git_compute_porcelain_commands ()
|
|||||||
: ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
|
: ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__git_pretty_aliases ()
|
||||||
|
{
|
||||||
|
local i IFS=$'\n'
|
||||||
|
for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do
|
||||||
|
case "$i" in
|
||||||
|
pretty.*)
|
||||||
|
i="${i#pretty.}"
|
||||||
|
echo "${i/ */}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
__git_aliases ()
|
__git_aliases ()
|
||||||
{
|
{
|
||||||
local i IFS=$'\n'
|
local i IFS=$'\n'
|
||||||
@ -913,12 +926,16 @@ _git_bisect ()
|
|||||||
local subcommands="start bad good skip reset visualize replay log run"
|
local subcommands="start bad good skip reset visualize replay log run"
|
||||||
local subcommand="$(__git_find_on_cmdline "$subcommands")"
|
local subcommand="$(__git_find_on_cmdline "$subcommands")"
|
||||||
if [ -z "$subcommand" ]; then
|
if [ -z "$subcommand" ]; then
|
||||||
__gitcomp "$subcommands"
|
if [ -f "$(__gitdir)"/BISECT_START ]; then
|
||||||
|
__gitcomp "$subcommands"
|
||||||
|
else
|
||||||
|
__gitcomp "replay start"
|
||||||
|
fi
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$subcommand" in
|
case "$subcommand" in
|
||||||
bad|good|reset|skip)
|
bad|good|reset|skip|start)
|
||||||
__gitcomp "$(__git_refs)"
|
__gitcomp "$(__git_refs)"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
@ -1374,12 +1391,12 @@ _git_log ()
|
|||||||
fi
|
fi
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
--pretty=*)
|
--pretty=*)
|
||||||
__gitcomp "$__git_log_pretty_formats
|
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||||
" "" "${cur##--pretty=}"
|
" "" "${cur##--pretty=}"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
--format=*)
|
--format=*)
|
||||||
__gitcomp "$__git_log_pretty_formats
|
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||||
" "" "${cur##--format=}"
|
" "" "${cur##--format=}"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
@ -1474,18 +1491,50 @@ _git_name_rev ()
|
|||||||
|
|
||||||
_git_notes ()
|
_git_notes ()
|
||||||
{
|
{
|
||||||
local subcommands="edit show"
|
local subcommands='add append copy edit list prune remove show'
|
||||||
if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
|
local subcommand="$(__git_find_on_cmdline "$subcommands")"
|
||||||
__gitcomp "$subcommands"
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
case "$subcommand,$cur" in
|
||||||
-m|-F)
|
,--*)
|
||||||
COMPREPLY=()
|
__gitcomp '--ref'
|
||||||
|
;;
|
||||||
|
,*)
|
||||||
|
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
||||||
|
--ref)
|
||||||
|
__gitcomp "$(__git_refs)"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
__gitcomp "$subcommands --ref"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
add,--reuse-message=*|append,--reuse-message=*)
|
||||||
|
__gitcomp "$(__git_refs)" "" "${cur##--reuse-message=}"
|
||||||
|
;;
|
||||||
|
add,--reedit-message=*|append,--reedit-message=*)
|
||||||
|
__gitcomp "$(__git_refs)" "" "${cur##--reedit-message=}"
|
||||||
|
;;
|
||||||
|
add,--*|append,--*)
|
||||||
|
__gitcomp '--file= --message= --reedit-message=
|
||||||
|
--reuse-message='
|
||||||
|
;;
|
||||||
|
copy,--*)
|
||||||
|
__gitcomp '--stdin'
|
||||||
|
;;
|
||||||
|
prune,--*)
|
||||||
|
__gitcomp '--dry-run --verbose'
|
||||||
|
;;
|
||||||
|
prune,*)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
__gitcomp "$(__git_refs)"
|
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
||||||
|
-m|-F)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
__gitcomp "$(__git_refs)"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@ -2106,12 +2155,12 @@ _git_show ()
|
|||||||
local cur="${COMP_WORDS[COMP_CWORD]}"
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
--pretty=*)
|
--pretty=*)
|
||||||
__gitcomp "$__git_log_pretty_formats
|
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||||
" "" "${cur##--pretty=}"
|
" "" "${cur##--pretty=}"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
--format=*)
|
--format=*)
|
||||||
__gitcomp "$__git_log_pretty_formats
|
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||||
" "" "${cur##--format=}"
|
" "" "${cur##--format=}"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user