“Restaure o esconderijo Git” Respostas de código

Como se recuperar de um estoque git

# 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

Como reverter um esconderijo

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

Restaure o esconderijo Git

# 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

Restaure o esconderijo Git

git stash apply
Azad Kshitij

Respostas semelhantes a “Restaure o esconderijo Git”

Perguntas semelhantes a “Restaure o esconderijo Git”

Mais respostas relacionadas para “Restaure o esconderijo Git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código