1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 03:17:58 +01:00
tldr/pages/common/git-tag.md
2016-01-13 12:33:17 +01:00

370 B

git tag

Create, list, delete or verify tags. Tag is reference to specific commit.

  • List all tags:

git tag

  • Create a tag with the given name pointing to the current commit:

git tag {{tag_name}}

  • Create an annotated tag with the given message:

git tag {{tag_name}} -m {{tag_message}}

  • Delete the tag with the given name:

git tag -d {{tag_name}}