Skip to content

Instantly share code, notes, and snippets.

@bugcy013
Created June 30, 2019 20:56
Show Gist options
  • Save bugcy013/154eccce70a7a4e8af09f0745b5bb1a0 to your computer and use it in GitHub Desktop.
Save bugcy013/154eccce70a7a4e8af09f0745b5bb1a0 to your computer and use it in GitHub Desktop.
How to delete the tag
========================
git tag -d v0.1.1
git push origin :refs/tags/v0.1.1
How to create tag and push to remote
=======================================
git commit -am "bump up package version"
git tag v0.0.4
git push --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment