summaryrefslogtreecommitdiff
path: root/contrib/completion
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2013-04-29 12:49:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-29 16:57:47 (GMT)
commit7e6a0cc47da79dd22c0338aee8750fda92ced5d9 (patch)
treebf11e7f63cba1ec3f1e7c7996b9fed5abf218550 /contrib/completion
parent72f7507710b548f62ff8ac6a4e666fe5c004fbd2 (diff)
downloadgit-7e6a0cc47da79dd22c0338aee8750fda92ced5d9.zip
git-7e6a0cc47da79dd22c0338aee8750fda92ced5d9.tar.gz
git-7e6a0cc47da79dd22c0338aee8750fda92ced5d9.tar.bz2
git-completion.bash: add remote.pushdefault to config list
224c2171 (remote.c: introduce remote.pushdefault, 2013-04-02) introduced the remote.pushdefault configuration variable, but forgot to teach git-completion.bash about it. Fix this. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rw-r--r--contrib/completion/git-completion.bash5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 9ec6671..b97162f 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -1823,6 +1823,10 @@ _git_config ()
__gitcomp "false true"
return
;;
+ remote.pushdefault)
+ __gitcomp_nl "$(__git_remotes)"
+ return
+ ;;
remote.*.fetch)
local remote="${prev#remote.}"
remote="${remote%.fetch}"
@@ -2202,6 +2206,7 @@ _git_config ()
receive.fsckObjects
receive.unpackLimit
receive.updateserverinfo
+ remote.pushdefault
remotes.
repack.usedeltabaseoffset
rerere.autoupdate