“Como se recuperar de um estoque 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

Recupere o esconderijo Git

git fsck --unreachable |
grep commit | cut -d\  -f3 |
xargs git log --merges --no-walk --grep=WIP
Kelly

Respostas semelhantes a “Como se recuperar de um estoque git”

Perguntas semelhantes a “Como se recuperar de um estoque git”

Mais respostas relacionadas para “Como se recuperar de um estoque git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código