With git describe you can get the number of commits since the last tag. If you only had the tag and the number of commits what is the best way to show the commit t
git describe
Try
git rev-list tag..HEAD --count
OR
git rev-list tag.. --count
They mean the same thing.