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 case "${COMP_WORDS[COMP_CWORD]}" in
--*=*) COMPREPLY=() ;; --*=*) COMPREPLY=() ;;
--*) __gitcomp " --*) __gitcomp "
--paginate
--no-pager --no-pager
--git-dir= --git-dir=
--bare --bare
--version --version
--exec-path --exec-path
--work-tree=
--help
" "
;; ;;
*) __gitcomp "$(__git_commands) $(__git_aliases)" ;; *) __gitcomp "$(__git_commands) $(__git_aliases)" ;;