= git TAG {{tag>git comando}} * dos tipos: * lightweight: ligeros, hace referencia a un commit * annotated: añade más información, como autor, mensaje y fecha == añadir * ''git tag '' : crea tag ligero en el HEAD * ''git tag '' : crea tag ligero del commit concreto * ''git tag -a -m "mensaje"'' : crea tag anotado en el HEAD * ''git tag -a -m "mensaje"'' : idem en el commit indicado == listar / usar * ''git tag'' : muestra lista de tags * ''git show '' : información del tag * ''git checkout '' : se usa como referencia para movernos al commit asociado == sincronizar * ''git push refs/tags/'' : sube el tag al repositorio * ''git push %%--%%tags'' : sube todos los tags * ''git pull %%--%%tags'' : descarga todos los tags