Git Stash

Listar as reservas atuais

git stash list

Aplicar um esconderijo

git stash apply stash@{0}

Deixe um esconderijo

git stash drop stash@{0}

Um stash também atua como uma pilha. Portanto, você também pode fazer

git stash pop

Limpe todos os stashes

git stash clear