Delete git tag
Posted
git
Delete a git tag
git tag -d v1.0.1
Here, v1.0.1 is the tag we want to delete.
Remove it from remote/GitHub
git push origin :v1.0.1
Note the ":" before the tag you want to remove from remote.