“Cómo recuperarse de 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

Recuperar Git Stash Clear

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

Respuestas similares a “Cómo recuperarse de Git Stash”

Preguntas similares a “Cómo recuperarse de Git Stash”

Más respuestas relacionadas con “Cómo recuperarse de Git Stash” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código