The output from git tag is ordered alphabetically. I would like it to be ordered chronological (the date of the commits they are assigned to, not the date on wh
git tag
In git 2.3.3 I can just do this to get them sorted by date:
git tag --sort version:refname
PS: For the record, I also answered the same thing on a duplicate question