How can I list all tags in my Git repository by the date they were created?

Sorting by tag creation date works with annotated and lightweight tags:

git for-each-ref --sort=creatordate --format '%(refname) %(creatordate)' refs/tags

Leave a Comment