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>
use these command to sync tags(delete all local then fetch all remote)
git tag -d $(git tag) # delete all local tags git fetch --all # fetch all remote to local