Skip to content

Instantly share code, notes, and snippets.

@mbigatti
Created September 1, 2015 09:37
Show Gist options
  • Save mbigatti/9246bb862a5e3240f8fc to your computer and use it in GitHub Desktop.
Save mbigatti/9246bb862a5e3240f8fc to your computer and use it in GitHub Desktop.
Git commands
# add tag
git tag -a 1.0 -m "Version 1.0"
git push --tags
# remove tag
git tag -d 1.1
git push origin :refs/tags/1.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment