git remove a tag from remote and local code example
Example 1: git remove remote tags
Delete a remote Git tag
$ git push --delete origin tagname
Example 2: git remove tag from remote
git push origin :tagname
Delete a remote Git tag
$ git push --delete origin tagname
git push origin :tagname