diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-05-28 22:20:48 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-02 16:11:55 -0700 |
commit | e832f5c0968031d687706c97464be21f2da7be21 (patch) | |
tree | 68f612f0c744885f4e4fc9f1ec378030d6f97da0 /contrib/completion/git-completion.bash | |
parent | Git 1.8.3 (diff) | |
download | tgif-e832f5c0968031d687706c97464be21f2da7be21.tar.xz |
completion: avoid ls-remote in certain scenarios
It's _very_ slow in many cases, and there's really no point in fetching
*everything* from the remote just for completion. In many cases it might
be faster for the user to type the whole thing.
If the user manually specifies 'refs/*', then the full ls-remote
completion is triggered.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 1c35eef56a..2ce4f7de45 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -427,14 +427,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 } |