mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
bash: complete *_HEAD refs if present
We already complete HEAD, of course, and might as well complete the other common refs mentioned in the rev-parse man page: FETCH_HEAD, ORIG_HEAD, and MERGE_HEAD. Signed-off-by: Ian Ward Comfort <icomfort@stanford.edu> Acked-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
7325283987
commit
d23e7570a7
@ -250,7 +250,9 @@ __git_refs ()
|
||||
refs="${cur%/*}"
|
||||
;;
|
||||
*)
|
||||
if [ -e "$dir/HEAD" ]; then echo HEAD; fi
|
||||
for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
|
||||
if [ -e "$dir/$i" ]; then echo $i; fi
|
||||
done
|
||||
format="refname:short"
|
||||
refs="refs/tags refs/heads refs/remotes"
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user