git remove tag from remote

Shell
git push --delete origin tagname
# Add tags
git tag tagName

# Push tags
git push --follow-tags

# Delete locally
git tag -d tagName

# Delete remote tag:
git tag -d tagName
git push origin :tagNamegit push --delete origin tagnamegit push origin :tagname

Source

Also in Shell: