Vea lo que hay en un alijo sin aplicarlo [duplicado]
¿ Cómo puedo ver lo que hay dentro de un alijo sin aplicarlo?
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 congit stash show
y...
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 -p
opción genera un parche , según git-diff
la 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