Delete Tag
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: StackOverFlow
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: StackOverFlow