summaryrefslogtreecommitdiff
path: root/contrib/completion/git-completion.bash
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-03-23 14:36:21 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-03-23 14:36:21 -0700
commitf47ff5afe4208488c6f977b497b81acdce941afc (patch)
tree1be2e221ac4d28d403dec9c75044e56508ef46f1 /contrib/completion/git-completion.bash
parentMerge branch 'dw/gitweb-doc-grammo' (diff)
parentcontrib/completion: "local var=()" is misinterpreted as func-decl by zsh (diff)
downloadtgif-f47ff5afe4208488c6f977b497b81acdce941afc.tar.xz
Merge branch 'am/completion-zsh-fix'
* am/completion-zsh-fix: contrib/completion: "local var=()" is misinterpreted as func-decl by zsh
Diffstat (limited to 'contrib/completion/git-completion.bash')
-rwxr-xr-xcontrib/completion/git-completion.bash3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index fba076dde2..31f714da92 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -94,9 +94,10 @@ __gitdir ()
__git_ps1_show_upstream ()
{
local key value
- local svn_remote=() svn_url_pattern count n
+ local svn_remote svn_url_pattern count n
local upstream=git legacy="" verbose=""
+ svn_remote=()
# get some config options from git-config
local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')"
while read -r key value; do