Commands.app

git tag

Workflow

Create, list, or delete tags

Options & Flags
Available options for this command
-a

Create annotated tag

-d

Delete tag

Examples
Common usage examples

Create lightweight tag

git tag v1.0.0

Create annotated tag

git tag -a v1.0.0 -m 'Version 1.0.0'

Push tag to remote

git push origin v1.0.0
Related Commands
You might also find these useful