Skip to content

Instantly share code, notes, and snippets.

# Create tag from commit:
git tag <tagname>
git push origin --tags
# Delete local and remote tag:
git push --delete origin <tagname>
git tag -d <tagname>