Git Tagging

Add an annotated tag:
git tag -a v1.0.0 -m 'release 1.0.0'
Push tag changes to remote repositories:
git push --tags
Remove a tag:
git tag -d v1.0.0
Remove a tag from remote repositories:
git tag -d v1.0.0
git push origin :refs/tags/v1.0.0

No comments:

Post a Comment