bash completion: Add long options for 'git rm'
Options added: --cached --dry-run --ignore-unmatch --quiet Signed-off-by: Lee Marlow <lee.marlow@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e8a43a132d
commit
08c701d476
@ -1170,6 +1170,20 @@ _git_reset ()
|
|||||||
__gitcomp "$(__git_refs)"
|
__gitcomp "$(__git_refs)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_git_rm ()
|
||||||
|
{
|
||||||
|
__git_has_doubledash && return
|
||||||
|
|
||||||
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||||
|
case "$cur" in
|
||||||
|
--*)
|
||||||
|
__gitcomp "--cached --dry-run --ignore-unmatch --quiet"
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
COMPREPLY=()
|
||||||
|
}
|
||||||
|
|
||||||
_git_shortlog ()
|
_git_shortlog ()
|
||||||
{
|
{
|
||||||
__git_has_doubledash && return
|
__git_has_doubledash && return
|
||||||
@ -1425,6 +1439,7 @@ _git ()
|
|||||||
rebase) _git_rebase ;;
|
rebase) _git_rebase ;;
|
||||||
remote) _git_remote ;;
|
remote) _git_remote ;;
|
||||||
reset) _git_reset ;;
|
reset) _git_reset ;;
|
||||||
|
rm) _git_rm ;;
|
||||||
send-email) _git_send_email ;;
|
send-email) _git_send_email ;;
|
||||||
shortlog) _git_shortlog ;;
|
shortlog) _git_shortlog ;;
|
||||||
show) _git_show ;;
|
show) _git_show ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user