Our project uses tags extensively. Every time someone moves a tag on a remote repository and I try to pull the change into my local I get an error that remote tags conflict with my local. So I have to remove those tags before I can pull from remote.
Is there a way to automatically replace local tags with remote.
Hi @Genna Reingold and welcome
you could try to setup the following option in order to overwrite your local tags
Open SourceTree -> Terminal and run the following command :
git config fetch.prune true
git config fetch.pruneTags true
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.