How to overwrite tags in local git repository? -


i have local clone of git repository created new tag. didn't push tag remote repository. revert local list of tags match remote. how can achieve that?

i have check solution how overwrite local tags git fetch? without success.

just delete local tag(s):

git tag -d <tag> 

and re-fetch tags remote:

git fetch --tags 

if want delete local tags:

git tag | xargs -n1 git tag -d 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -