git tag

Description

Create, list, delete or verify a tag object signed with GPG.

Command
git tag
Examples
List tags
git tag
Create lightweight tag
git tag v1.0.0
Create annotated tag
git tag -a v1.0.0 -m "Release version 1.0.0"
Delete tag
git tag -d v1.0.0
Parameters
Parameter Type Required Description
-a string No Create annotated tag
-d string No Delete tag
-l string No List tags
-s string No Create signed tag
Command Info
Category: Tagging
Type: Git
Views: 7
Status: Active
Tags
tag version release