Skip to content

Instantly share code, notes, and snippets.

@marciofmjr
Last active October 11, 2021 12:16
Show Gist options
  • Save marciofmjr/924365ba43d7864d5a300f533898c6f8 to your computer and use it in GitHub Desktop.
Save marciofmjr/924365ba43d7864d5a300f533898c6f8 to your computer and use it in GitHub Desktop.
git stash
# Para listar os stash salvos
git stash list
# Para ver os arquivos alterados de um stash
git stash show stash@{0}
# Para ver os detalhes de um stash
git stash show -p stash@{0}
# Para aplicar as alterações de um stash sem apagá-lo
git stash apply
# Para aplicar as alterações de um stash e apagar o stash
git stash pop
# Para apagar um stash sem aplicá-lo
git stash drop stash@{2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment