[Git] CLI Snippets
git tag
Delete All local tags. (Optional Recommended)
git tag -d $(git tag -l)
Fetch remote All tags. (Optional Recommended)
git fetch --tags
Delete All remote tags.
Note: pushing once should be faster than multiple times
git push origin --delete $(git tag -l)
Delete All local tags.
git tag -d $(git tag -l)