From: SZEDER Gábor Date: Sat, 14 Jun 2008 09:48:01 +0000 (+0200) Subject: completion: add more 'git add' options X-Git-Tag: v1.5.6-rc3~7 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1d284cbae3abd5fb6f58dd5282ba0e93eb68e6c6 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 16984632d9..2141b6b6ba 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=()