Delete Git Tag

git

Delete a git tag

git tag -d v1.0.1

Here, v1.0.1 is the tag we want to delete.

Remove it from remote/GitHub

git push origin :v1.0.1

Note the ":" before the tag you want to remove from remote.



Stay up to date

Get notified when I publish something new, and unsubscribe at any time.