Skip to content

Instantly share code, notes, and snippets.

@jgcasta
Created June 10, 2019 10:32
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 jgcasta/22e7356959692ed80bdf03f8c1b8346c to your computer and use it in GitHub Desktop.
Save jgcasta/22e7356959692ed80bdf03f8c1b8346c to your computer and use it in GitHub Desktop.
Tag releases in git
git add .
git commit -m "commit messge"
git push origin master


git tag -a 0.1.0 -m "tag message"
git push --tags

# delete local tag
git tag --delete 0.1.0

# delete remote tag
git push origin :0.1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment