Skip to content

Instantly share code, notes, and snippets.

@rederlo
Created March 3, 2016 14:47
Show Gist options
  • Save rederlo/be93f6ed52fc32cf928a to your computer and use it in GitHub Desktop.
Save rederlo/be93f6ed52fc32cf928a to your computer and use it in GitHub Desktop.
Create or Delete Tags
/*** create new tag **/
git tag -a <tag-name> <hash>
git push --tags
/*** delete tag **8/
git tag -d <tag-name>
git push --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment