Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 268 Bytes

File metadata and controls

15 lines (10 loc) · 268 Bytes

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