What\'s the simplest way to get the most recent tag in Git?
git tag a HEAD git tag b HEAD^^ git tag c HEAD^ git tag
output:
git describe --abbrev=0 --tags
If you don't see latest tag, make sure of fetching origin before running that:
git remote update