Skip to content

Instantly share code, notes, and snippets.

@DavidAlejandro18
Last active July 7, 2021 04:33
Show Gist options
  • Save DavidAlejandro18/62a913fea8f660af020e8850f6a50c5b to your computer and use it in GitHub Desktop.
Save DavidAlejandro18/62a913fea8f660af020e8850f6a50c5b to your computer and use it in GitHub Desktop.
Comando de git para agregar y publicar tags al proyecto.
git tag -a v0.0.1 42373eb -m "Mensaje" ------> Agregar un tag al commit especificado junto a un mensaje
git tag -a v0.0.1 -m "Mensaje" ------> Agregar un tag al commit actual junto a un mensaje
SUBIR TAGS
git push --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment