Tags

List

$git tag

$git show <TAG>

Create

$git tag -a <TAG> -m <COMMENT>

Commit

$git push --tags

Delete

$git tag -d <TAG>

$git push origin :refs/tags/<TAG>

Rename

$git tag new old

$git tag -d old

$git push origin :refs/tags/old

$git push --tags

Fetch and prune

$git fetch --prune

$git fetch --tags origin

Diff