how to delete origin tags git code example
Example 1: delete git tag remote
git push --delete origin tagname
Example 2: git remove tag from remote
git push origin :tagname
git push --delete origin tagname
git push origin :tagname