about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_git4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 20de0d8dc..e65fff5e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-11-22  Clint Adams  <clint@zsh.org>
 
+	* Sean Finney: 24115: Completion/Unix/Command/_git: offer tags as
+	well as heads where refspecs are valid.
+
 	* 24114: Completion/Unix/Command/_git: make colon suffix removable
 	after the first part of refspecs.
 
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 38a5ca58f..6a7d4b7c2 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -2801,7 +2801,9 @@ __git_ref_specs () {
     if compset -S ':*'; then
       __git_heads
     else
-      __git_heads -qS ':'
+      _alternative \
+       'tags:tag:__git_tags' \
+       'heads:head:__git_heads -qS :'
     fi
   fi
 }