tutorial stash name español git git-stash

git - stash - Vea lo que está en un alijo sin aplicarlo



git stash show (1)

De la página man git-stash :

Las modificaciones escondidas por este comando pueden enumerarse con la lista de git stash, inspeccionadas con git stash show

show [<stash>] Show the changes recorded in the stash as a diff between the stashed state and its original parent. When no <stash> is given, shows the latest one. By default, the command shows the diffstat, but it will accept any format known to git diff (e.g., git stash show -p stash@{1} to view the second most recent stash in patch form).

Entonces, para ver el contenido del alijo más reciente, ejecute

git stash show -p

Para ver el contenido de un alijo arbitrario, ejecute algo como

git stash show -p stash@{1}

Posible duplicado:
¿Es posible previsualizar los contenidos ocultos en git?

Veo que puede aplicar / desaplicar un alijo e incluso crear una nueva rama a partir de un alijo. ¿Es posible simplemente ver lo que está dentro del alijo sin realmente aplicarlo?