Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 357 Bytes

git-essentials.md

File metadata and controls

9 lines (7 loc) · 357 Bytes

Git Tag Management

    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