Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created October 4, 2017 22:26
Show Gist options
  • Save arkadiusjonczek/8f87f23e398376a980250c2d4f1ba35c to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/8f87f23e398376a980250c2d4f1ba35c to your computer and use it in GitHub Desktop.
Delete git tag and push a new one #tags: git
# 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