presentacion-workshop-3



presentacion-workshop-3

0 0


presentacion-workshop-3


On Github MiguelNieva / presentacion-workshop-3

Bienvenidos al curso profesional de Git y GitHub
Git Tags Especificar momentos de tu repositorio importantes. Puede ser una nueva versión del proyecto, un feature fuerte, etc.
Git Tags Existen 2 formas de crear tags. - Annotated Tags - Lightweight Tags
Git Tags
					git tag -a [versión] -m "[mensaje]"
				
				Annotated Tag. Agregas la versión y un mensaje para agregar detalles.
				
Git Tags
					git tag [versión]
				
				Lightweight Tag. Agregas la versión y listo. No hay mensaje.
				
Lista de Tags
					git tag
				
				Muestra todos los tags creados.
				
					git tag -l "[versión]"
				
				Busca la versión que le solicites.
				
Analizar un tag
					git show [versión]
				
				Muestra los detalles del tag.
				
Para agregar un tag en un commit ancestral, puedes utilizar:
				git tag -a [versión] [commit]