“restaurar git stash” Código de respuesta

Cómo recuperarse de Git Stash

# List your current stashes
git stash list 
# If there is only one stash you can switch to it with
git stash pop
# If there are multiple stashes you choose by typing the name at the end i.e.
git stash pop stash@{0}
Trained Tuna

Cómo revertir un alijo de git

$ git stash show -p stash@{0} | git apply -R
Yellowed Yak

restaurar git stash

# Just check out the branch you want your changes on, and then 
git stash apply 
#Then use 
git diff # to see the result
Jumping Boy

restaurar git stash

git stash apply
Azad Kshitij

Respuestas similares a “restaurar git stash”

Preguntas similares a “restaurar git stash”

Más respuestas relacionadas con “restaurar git stash” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código