Last active
October 11, 2021 12:16
-
-
Save marciofmjr/924365ba43d7864d5a300f533898c6f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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