Command
git tag
Explanation
git tag is used to create, list, or delete tags. It creates, lists, or deletes the tags.
Examples
List all tags
git tag
Create lightweight tag
git tag v1.0
Create annotated tag
git tag -a v1.0 -m "message"
git tag
git tag is used to create, list, or delete tags. It creates, lists, or deletes the tags.
List all tags
git tag
Create lightweight tag
git tag v1.0
Create annotated tag
git tag -a v1.0 -m "message"