Tags Manipular etiquetas en Git

Crear un tag, se posiciona en el commit que quiere ponerle un tag

git tag nombre-tag
git tag v1.0.1

Ver los tags creados

git tag

Borrar un tag

git tag -d nombre-tag

Crear un tag con anotaciones, al crear el tag con el parametro -a queda registrado tambien quien fué el que creó el tag y la fecha

git tag -a v1.0.0 -m "Primera versión estable"

Anotar un commit pasado, solo se necesita su id

git tag -a v0.1.0 345d7de -m "Mensaje."

Ver el contenido y mensaje de un tag

git show nombre-tag
git show v1.0.0