Deleting a Git tag

Posted on 1 July 2015

I had to delete a git tag locally and on the remote repo. The first part was easy enough, but had to dig around for the latter.

Locally: git tag -d v0.1.1

Remote: git push origin :refs/tags/v0.1.1

That's it.