Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need some way to list all tags in my system by the date they were created but am not sure if I can get that data via git-log. Ideas?

share|improve this question
Do you mean that you want to get the list of all tags in order of there creation dates? – izhak Jun 7 '11 at 18:43

1 Answer

up vote 12 down vote accepted

If it’s an annotated tag, you can use the tag date:

git for-each-ref --format '%(refname) %(taggerdate)' refs/tags

But if it’s a lightweight tag, there’s no information about when it was created (all it does is name an object).

share|improve this answer
3  
Awesome. git for-each-ref --format="%(taggerdate): %(refname)" --sort=-taggerdate --count=10 refs/tags did exactly what I needed. Thanks! – Jon Ursenbach Jun 7 '11 at 18:58
4  
A solution by @DrorCohen which works for lightweight tags: stackoverflow.com/questions/6900328/…. Pasting here for easy reference: git log --tags --simplify-by-decoration --pretty="format:%ai %d" – Gilead Oct 24 '12 at 13:02
Can use %(contents) to add in annotation if needed, e.g. git for-each-ref --sort='*authordate' --format='%(taggerdate:short) | %(tag) | %(contents)' refs/tags – Tim Diggins May 14 at 11:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.