GIT - Comparing Tags

Las etiquetas marcan hitos importantes en un proyecto, por lo que son una excelente manera de comparar lo que sucedió entre esos hitos.

Command Listing


pwd
git status
git tag --list
ls
mate index.html
git commit -a
git log --oneline --decorate --graph --all
git tag -a v-1.1
mate simple.html
git commit -am "Updating for tag 1.1"
git commit --amend
git tag v-1.2 -m "Release 1.2"
git tag --list
git log --oneline --decorate --graph --all
git diff v-1.0 v-1.2
git difftool v-1.0 v-1.2


Publicar un comentario

0 Comentarios