git/tag

Manage Tags

Create, list, delete tags

git
tag
repository

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"