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 truegit config fetch.pruneTags true
It looks like you're new here. Sign in or register to get started.