Skip to content

Instantly share code, notes, and snippets.

@JeffCost
Last active December 17, 2015 18:29
Show Gist options
  • Save JeffCost/5653906 to your computer and use it in GitHub Desktop.
Save JeffCost/5653906 to your computer and use it in GitHub Desktop.
GIT: Add/Remove Tags
1) Delete the v0.4 tag locally: git tag -d v0.4
2) Delete the v0.4 tag on GitHub (which removes its download link): git push origin :v0.4
3) Add a new tag for the newest stable release: git tag -a v0.5 -m "Version 0.5 Stable"
4) Push the latest tag to GitHub (two dashes): git push --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment