D7 - tag and describe
git tags
git tah <tag> <hash>
- to label specific commits
git describe
git describe <ref>
- the output gives the closes ancestor tag, how many commits it is from that, and the hash of the described commit
>>> <tag>_<numCommits>_g<hash>