bash: Add more long options to be completed with "git --<TAB>"

Add the following long options to be completed with command "git":

	--paginate
	--work-tree=
	--help

Signed-off-by: Teemu Likonen <tlikonen@iki.fi>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Teemu Likonen 2008-03-06 18:52:37 +02:00 committed by Shawn O. Pearce
parent 51fe120903
commit ce5a2c956f

View file

@ -1271,11 +1271,14 @@ _git ()
case "${COMP_WORDS[COMP_CWORD]}" in
--*=*) COMPREPLY=() ;;
--*) __gitcomp "
--paginate
--no-pager
--git-dir=
--bare
--version
--exec-path
--work-tree=
--help
"
;;
*) __gitcomp "$(__git_commands) $(__git_aliases)" ;;