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
As Alexander pointed out it should be
git tag --sort=taggerdate
for correct chronological order.
edit: * iff you're interested in the date the tags where pushed, if you're interested in the date of the commits, it should be "commiterdate"