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:
Will output the tag of the latest tagged commit across all branches
git describe --tags $(git rev-list --tags --max-count=1)