I have seen the commands git describe and git-name-rev but I have not managed to get them to list more than one tag.
git describe
git-name-rev
Example: I have the sh
You can use:
git tag --contains
that shows all tags at certain commit. It can be used instead of:
git tag --points-at HEAD
that is available only from 1.7.10.