How to delete a remote tag in git
28 Dec 2014If you need to delete a remote tag named – oldtag use the below command
git tag -d oldtag
git push origin :refs/tags/oldtagIf you need to delete a remote tag named – oldtag use the below command
git tag -d oldtag
git push origin :refs/tags/oldtag