Skip to main content

How can I remove a remote Git tag?

24 Aug 2013 - git

git tag -d <tag-name>
git push origin :refs/tags/<tag-name>

References