Get Tag Names in Git
Example: Get Latest Tag Name
git describe --tag
v0.5Example: Get All Tags Sorted by Commit Date
git tag --sort=committerdate
v0.1
v0.2
v0.3
v0.4
v0.5Last updated