git tag -d your-tag # Delete a tag locally
git push --delete origin your-tag # Delete a tag from the remote repository
git tag -a your-tag -m "Your message" # Create a new annotated tag with a message
git push origin --tags # Push all tags to the remote repository