bash: Support --add completion to git-config.
authorShawn O. Pearce <spearce@spearce.org>
Mon, 5 Feb 2007 20:44:32 +0000 (15:44 -0500)
committerJunio C Hamano <junkio@cox.net>
Mon, 5 Feb 2007 21:49:00 +0000 (13:49 -0800)
We've recently added --add as an argument to git-config, but I
missed putting it into the earlier round of git-config updates
within the bash completion.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
contrib/completion/git-completion.bash
index 089a7b0571bc70637a1568716648d425b4d98ca7..f9b827a617b1ffd5aaf380110609fcb36f132261 100755 (executable)
@@ -719,7 +719,7 @@ _git_config ()
                __gitcomp "
                        --global --list --replace-all
                        --get --get-all --get-regexp
-                       --unset --unset-all
+                       --add --unset --unset-all
                        "
                return
                ;;