git tag
List Tags
git tag
Delete a Local Tag
git tag -d|--delete <tag-name>
Push to Remote
git push --tag
Delete Remote Tag
git push <repo-name> :refs/tags/<tag-name>
Make an Unsigned, Annotated Tag Object
git tag -a|--annotate <tag-name> -m|--message '<tag-comment>'