Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. Cómo usar Git
  6. Cómo usar etiquetas en Git
  7. Anotar una etiqueta
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

Anotar una etiqueta

Podemos añadir una anotación a una etiqueta ejecutando el comando git tag con la opción -a, que abre el editor de texto predeterminado que permite añadir notas.

También puede utilizar la opción -am en su lugar si desea añadir la nota junto a la creación de la etiqueta.

Ejecute el siguiente comando para añadir una etiqueta para HEAD llamada tag2 con algunas notas:

$ git tag -am "Simple Git tutorial for beginners" tag2

Utilizando la opción -n obtendrá la lista de etiquetas con sus notas para este repositorio.

$ git tag -n
  tag1           first commit
  tag2          Simple Git tutorial for beginners
Add a tag with an annotation "tag2" to a commit which HEAD is pointing out now.

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life