Is there a way to keep my local git tags in lockstep with a remote\'s tags? That is -- not only get new tags when created (as usual, when fetch-ing/pull>
fetch
pull>
Another solution which actually works for me:
git tag -l | xargs git tag -d && git fetch -t