You can delete a git tag locally and remotely using git tag and git push –delete commands.
Delete a local git tag:
1 2 |
## Delete a local git tag git tag -d |
Delete a remote git tag:
1 2 3 |
## Delete a remote git tag git tag -d git push --delete |