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