Removing git tags before publishing – User friendly Tech help

How we can remove npm/git tags before publishing:-

n

git tag -d tagNamengit push origin :refs/tags/tagName

n

Example:-

n

➜ git:(master) ✗ npm version patch v19.3.2 ➜ git:(master) git tag -d v19.3.2

n

Deleted tag ‘v19.3.2’ (was 7d16814)

Was this article helpful?
YesNo

Similar Posts