Skip to content

Instantly share code, notes, and snippets.

@martijngastkemper
Created October 3, 2014 13:37
Show Gist options
  • Save martijngastkemper/87514efac2e004862c19 to your computer and use it in GitHub Desktop.
Save martijngastkemper/87514efac2e004862c19 to your computer and use it in GitHub Desktop.
Update a Git tag and push that to origin.
# Steps
# 1. Remove tag
git tag -d TAGNAME
# 2. Push to origin
git push origin :refs/tags/TAGNAME
# 3. Create tag
git tag TAGNAME
# 4. Push to origin
git push origin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment