> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/git/delete-tag.md).

# Delete Tag

Following command be used to delete a tag on remote:

```bash
git push --delete {REMOTE_NAME} {TAG_NAME}
```

To also delete the local tag, use:

```bash
git tag --delete {TAG_NAME}
```

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/5480292)
