How to delete a git tag

To delete a local tag:

git tag -d v0.1.1

To delete a remote tag:

git push origin :refs/tags/v0.1.1
1 viewer