Sort git tag by created date
Default
> git tag | tail
v1.5.10
v1.5.11
v1.5.2
v1.5.3
v1.5.4
v1.5.5
v1.5.6
v1.5.7
v1.5.8
v1.5.9
Sort by created date
> git tag --sort=creatordate | tail
v1.5.2
v1.5.3
v1.5.4
v1.5.5
v1.5.6
v1.5.7
v1.5.8
v1.5.9
v1.5.10
v1.5.11