Skip to content

Commit

Permalink
Merge branch 'am/completion-zsh-fix'
Browse files Browse the repository at this point in the history
* am/completion-zsh-fix:
  contrib/completion: "local var=()" is misinterpreted as func-decl by zsh
  • Loading branch information
Junio C Hamano committed Mar 23, 2012
2 parents 0df81d8 + 471dcfd commit f47ff5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f47ff5a

Please sign in to comment.