NOTES
Update Git tags to match remote
git tag -l | xargs git tag -d
git fetch --tags
The first line deletes all tags in the current repo. The second fetches all tags from our remote.
NOTES
git tag -l | xargs git tag -d
git fetch --tags
The first line deletes all tags in the current repo. The second fetches all tags from our remote.