$git tag
$git show <TAG>
$git tag -a <TAG> -m <COMMENT>
$git push --tags
$git tag -d <TAG>
$git push origin :refs/tags/<TAG>
$git tag new old
$git tag -d old
$git push origin :refs/tags/old
$git push --tags
$git fetch --prune
$git fetch --tags origin