GitTagsTags List all tags git tag Create a new tag at a specific commit git tag <tag_name> <commit_id> Create an annotated tag with a message git tag -a <tag_name> -m "tag message" Delete a specific tag git tag -d <tag_name> Delete a specific remote tag git push <remote_name> --delete <tag_name> Show information about a specific tag git show <tag_name>PreviousCollaborationNextCommit HistoryOn this page