Git tags

From notes
Author
Created 6 July 2018 12:49:51
Last Modified 6 July 2018 12:49:51
Tags

Adding a git tag:

  • git tag -a tagname -m "Descriptive message"
  • git push --tags

Deleting a tag

  • git tag --delete tagname
  • git push --delete origin tagname