summaryrefslogtreecommitdiff
path: root/contrib/completion
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2013-06-11 13:30:16 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-06-11 13:30:16 -0700
commita62d73e7c6fff96ea7fb2133b3e127a4a4bda957 (patch)
treec7d0217b0f91d287a6e268cb1d429a4fad7f2dfa /contrib/completion
parentMerge branch 'tr/test-commit-only-on-orphan' (diff)
parentcompletion: avoid ls-remote in certain scenarios (diff)
downloadtgif-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')
-rw-r--r--contrib/completion/git-completion.bash10
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
}