79258081

Date: 2024-12-06 13:06:59
Score: 1
Natty:
Report link

A shorter version to delete all local and remote tags:

  1. Fetch all tags from remote (you need to have them locally in order for this to work)

    git fetch -a
    
  2. Delete all tags from remote:

    git push --delete origin `git tag`
    
  3. Delete all tags locally:

    git tag -d `git tag`
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user28659634