diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-02-05 15:44:32 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-05 13:49:00 -0800 |
commit | 1b71eb35ddb20057a266b05258de24d350ed5ba5 (patch) | |
tree | 656e57c85f92fe9d9fec95e14604273cd82f0705 /contrib/completion | |
parent | e459415c9c3c8e855998dd0247f23d32a0dca4ff (diff) | |
download | git-1b71eb35ddb20057a266b05258de24d350ed5ba5.tar.gz git-1b71eb35ddb20057a266b05258de24d350ed5ba5.tar.xz |
bash: Support --add completion to git-config.
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>
Diffstat (limited to 'contrib/completion')
-rwxr-xr-x | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 089a7b057..f9b827a61 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -719,7 +719,7 @@ _git_config () __gitcomp " --global --list --replace-all --get --get-all --get-regexp - --unset --unset-all + --add --unset --unset-all " return ;; |