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 the following, if you want to get the number of commits since last tag.
git rev-list $(git describe --abbrev=0)..HEAD --count