Created
October 4, 2017 22:26
-
-
Save arkadiusjonczek/8f87f23e398376a980250c2d4f1ba35c to your computer and use it in GitHub Desktop.
Delete git tag and push a new one #tags: git
This file contains 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
# remove tag 1.1 | |
git tag -d 1.1 | |
git push origin :refs/tags/1.1 | |
# tag current and push to origin | |
git tag 1.1 | |
git push origin 1.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment