diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-06-11 13:30:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-11 13:30:16 -0700 |
commit | a62d73e7c6fff96ea7fb2133b3e127a4a4bda957 (patch) | |
tree | c7d0217b0f91d287a6e268cb1d429a4fad7f2dfa /contrib/completion/git-completion.bash | |
parent | Merge branch 'tr/test-commit-only-on-orphan' (diff) | |
parent | completion: avoid ls-remote in certain scenarios (diff) | |
download | tgif-a62d73e7c6fff96ea7fb2133b3e127a4a4bda957.tar.xz |
Merge branch 'fc/completion-less-ls-remote'
* fc/completion-less-ls-remote:
completion: avoid ls-remote in certain scenarios
Diffstat (limited to 'contrib/completion/git-completion.bash')
-rw-r--r-- | contrib/completion/git-completion.bash | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 91234d47ad..56c52c6654 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -371,14 +371,8 @@ __git_refs () done ;; *) - git ls-remote "$dir" HEAD ORIG_HEAD 'refs/tags/*' 'refs/heads/*' 'refs/remotes/*' 2>/dev/null | \ - while read -r hash i; do - case "$i" in - *^{}) ;; - refs/*) echo "${i#refs/*/}" ;; - *) echo "$i" ;; - esac - done + echo "HEAD" + git for-each-ref --format="%(refname:short)" -- "refs/remotes/$dir/" | sed -e "s#^$dir/##" ;; esac } |