Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-02-05 23:44:32 +0300
committerJunio C Hamano <junkio@cox.net>2007-02-06 00:49:00 +0300
commit1b71eb35ddb20057a266b05258de24d350ed5ba5 (patch)
tree656e57c85f92fe9d9fec95e14604273cd82f0705 /contrib
parente459415c9c3c8e855998dd0247f23d32a0dca4ff (diff)
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')
-rwxr-xr-xcontrib/completion/git-completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 089a7b0571..f9b827a617 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
;;