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

php - regexp cyrillic filename not matches -

c# - OpenXML hanging while writing elements -

sql - Select Query has unexpected multiple records (MS Access) -