From: SZEDER Gábor Date: Sat, 14 Jun 2008 09:48:01 +0000 (+0200) Subject: completion: add more 'git add' options X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=1d284cbae3abd5fb6f58dd5282ba0e93eb68e6c6;p=~andy%2Fgit completion: add more 'git add' options Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 16984632d..2141b6b6b 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -500,7 +500,10 @@ _git_add () local cur="${COMP_WORDS[COMP_CWORD]}" case "$cur" in --*) - __gitcomp "--interactive --refresh" + __gitcomp " + --interactive --refresh --patch --update --dry-run + --ignore-errors + " return esac COMPREPLY=()