bash: complete full refs
commit608efb875f89a946d5cb37b2dd4077132618e0e1
authorSZEDER Gábor <szeder@ira.uka.de>
Fri, 28 Nov 2008 00:46:38 +0000 (28 01:46 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 28 Nov 2008 02:34:30 +0000 (27 18:34 -0800)
tree1ba1a512894bc7daeb7e6b9c447eb6b8a96bec47
parent76bac89036abd73a4a32fd494a34dcc3340fef1a
bash: complete full refs

Sometimes it's handy to complete full refs, e.g. the user has some
refs outside of refs/{heads,remotes,tags} or the user wants to
complete some git command's special refs (like 'git show
refs/bisect/bad').

To do that, we check whether the ref to be completed starts with
'refs/' or is 'refs' (to reduce the risk of matching 'refs-').  If it
does, then we offer full refs for completion; otherwise everything
works as usual.

This way the impact on the common case is fairly small (hopefully not
many users have branches or tags starting with 'refs'), and in the
special case the cost of typing out 'refs' is bearable.

While at it, also remove the unused 'cmd' variable from '__git_refs'.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/completion/git-completion.bash