You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extra tags may be pushed if they were in working directory.
It may break the command logic and cause misunderstanding.
The better way to fix it is to clean all local tags and fetch tags from a remote repository.
The snippet should be applied before any release/make calls, so it can be inside the command logic:
git tag -l | xargs git tag -d
git fetch --tags
The text was updated successfully, but these errors were encountered:
xepozz
changed the title
release/make command may have extra tagsrelease/make command may have extra tags
Oct 28, 2022
Extra tags may be pushed if they were in working directory.
It may break the command logic and cause misunderstanding.
The better way to fix it is to clean all local tags and fetch tags from a remote repository.
The snippet should be applied before any release/make calls, so it can be inside the command logic:
git tag -l | xargs git tag -d git fetch --tags
The text was updated successfully, but these errors were encountered: