git delete all remote tags 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)
Example 3: git remove all tags from remote
git fetch
git tag -l | xargs -n 1 git push --delete origin