remove git tag from remote code example
Example 1: git delete tag name
git push --delete origin tagname
Example 2: remove remote git
# The example will remove the github remote.
# Note that the command will not delete the repository,
# just the local reference.
git remote rm origin
Example 3: git remove tag from remote
git push origin :tagname