Created
June 30, 2019 20:56
-
-
Save bugcy013/154eccce70a7a4e8af09f0745b5bb1a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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