Git Stash
Introdução resumida:
O git stash permite guardar alterações sem interferir com os commits.
Para obter a lista de todos os stashs:
git stash list
Para criar um stash(sem referencia):
git stash
Para recuperar e apagar o ultimo stash:
git stash pop
Para recuperar e manter o ultimo stash:
git stash apply
Para criar um stash com identificação:
git stash save nome_do_stash
ou
git stash save 'nome do stash'
Para recuperar e manter um stash especifico:
git stash apply stash@{n}
ou
git stash apply n
Para recuperar e apagar um stash especifico:
git stash pop stash@{n}
Top comments (0)