link
git/tag

Manage Tags

Create, list, delete tags

git
tag
repository

Command

git tag

Examples

List all tags

git tag

Create lightweight tag

git tag v1.0

Create annotated tag

git tag -a v1.0 -m "message"