so the git tag command lists the current git tags
tag1
tag2
git tag -n prints tag's message
tag1 blah blah
tag2 blah blah
What's the best way to get the hash of tag1 & tag2 ?
Thanks.
|
|
|
How about this?
|
|||||||||
|
|
I had a similar question, but wanted the hash of (several) specific tags. I found that "show-ref" will take a list of tags, so this does the job:
However, some experimentation with "git show" resulted in this command:
Since I'm much more familiar with using "show" than "show-ref", I find the latter easier to remember and more helpful too. See also the nice summary in Git - how to tell which commit a tag points to. |
|||
|
|
|
The tags have to be signed and/or messaged. Lightweight tags don't have SHA1 objects and are just refs. Otherwise try |
|||||
|
|
To get the SHA1 referred to by any sort of ref (branch, tag...) use
It will print only the full SHA1s, on separate lines. The Of course, you shouldn't often need to do this, since any Git command that would accept an SHA1 should also accept a tag! |
|||
|
|
|
From S. Christoffer Eliesen’s comment To show a list of tags with dereferenced refs (in case of annotated tags) use
Dereferenced tags are postfixed with a |
|||
|
|