Vea lo que hay en un alijo sin aplicarlo [duplicado]

Resuelto Chris Abrams asked hace 12 años • 1 respuestas

¿ Cómo puedo ver lo que hay dentro de un alijo sin aplicarlo?

Chris Abrams avatar May 24 '12 01:05 Chris Abrams
Aceptado

De man git-stash(que también se puede obtener a través de git help stash):

Las modificaciones guardadas por este comando se pueden enumerar con git stash list, inspeccionar con git stash showy...

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).

Nota: la -popción genera un parche , según git-diffla documentación.

Enumere los alijos:

git stash list

Muestra los archivos en el alijo más reciente:

git stash show

Muestra los cambios del alijo más reciente:

git stash show -p

Muestra los cambios del alijo con nombre:

git stash show -p stash@{1}

O en resumen:

git stash show -p 1 
simont avatar May 23 '2012 18:05 simont