starkej2
11/27/2017 - 4:54 PM

Delete a git tag

# delete remote tag
git push --delete origin <tagname>

# delete local tag
git tag -d <tagname>