ΒΆ
Git delete all existing tags
for remote tags:
git push origin --delete $(git tag)
for local tags:
git tag -d $(git tag)