• git tag View tag
  • git tag <tag-name> create named tags
  • git tag -a <tag-name> -m <message> Add a comment tag
  • git tag <tag-name> <commit-id> -a -m <message> Create a tag for past commits
  • git push origin <tag-name> Push the tag to the remote repository
  • git push origin --tags Push all tags
  • git pull origin --tags pull tags remotely
  • git tag -d <tag-name> Remove local tags
  • git push origin :refs/tags/<tag-name> Remove remote tags