Skip to content

Instantly share code, notes, and snippets.

@jdamick
Last active November 21, 2016 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdamick/677277f38b0af8fc03efebd09d07ea40 to your computer and use it in GitHub Desktop.
Save jdamick/677277f38b0af8fc03efebd09d07ea40 to your computer and use it in GitHub Desktop.
# force reauth
git config --global credential.helper osxkeychain
# remove a tag
git tag -d <tag>
git push origin :refs/tags/<tag>
# to release
git tag 0.0.1 -m "initial release"
git push --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment