git tag View taggit tag <tag-name> create named tagsgit tag -a <tag-name> -m <message> Add a comment taggit tag <tag-name> <commit-id> -a -m <message> Create a tag for past commitsgit push origin <tag-name> Push the tag to the remote repositorygit push origin --tags Push all tagsgit pull origin --tags pull tags remotelygit tag -d <tag-name> Remove local tagsgit push origin :refs/tags/<tag-name> Remove remote tags