Last active
November 27, 2015 14:24
-
-
Save dominikbulaj/cf8f79d3548d794e7c63 to your computer and use it in GitHub Desktop.
git rename tag
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
git tag new old # create new tag | |
git tag -d old # remove old tag | |
git push origin :refs/tags/old # remove old tag from remote repository | |
git push --tags # push tags |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment