For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

Last updated