How to remove all git origin and local tags?

  1. Delete All local tags. (Optional Recommended)
    git tag -d $(git tag -l)
    
  2. Fetch remote All tags. (Optional Recommended)
    git fetch
    
  3. Delete All remote tags.
    # Note: pushing once should be faster than multiple times
    git push origin --delete $(git tag -l) 
    
  4. Delete All local tags.
    git tag -d $(git tag -l)
    

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)