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
Post a Comment