Is there a one liner that shows me the dates where all git lightweight tags where created ?
Something like: git show tags --format=date ?
Is there a one liner that shows me the dates where all git lightweight tags where created ?
Something like: git show tags --format=date ?
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).