Following command be used to delete a tag on remote:
$ git push --delete {REMOTE_NAME} {TAG_NAME}
To also delete the local tag, use:
$ git tag --delete {TAG_NAME}
Source: StackOverFlowarrow-up-right
Last updated 1 year ago