Git tagging operations List tags: git tag Create a tag: git tag -a 1.0 -m "The first stable release." Create a tag and take message from the given file: git tag -F tag.md 1.0 Push tags: git push --tags Delete a tag(local and remote): git tag -d 1.0 git push origin :1.0