git command to show all (lightweight) tags creation dates

Viewed 80814

Is there a one liner that shows me the dates where all git lightweight tags where created ?

Something like: git show tags --format=date ?

3 Answers

You cannot

Lightweight (non-annotated) tags do only point to another object (like a commit, which has a date). See the one of the other answers to print these (creatordate).

Annotated tags do carry a date, an author and a message. The one of the other answers to print these (taggerdate).

Related