DEV Community

slns
slns

Posted on

cheat sheet, Git Stash

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
Enter fullscreen mode Exit fullscreen mode
Para criar um stash(sem referencia):
  git stash
Enter fullscreen mode Exit fullscreen mode
Para recuperar e apagar o ultimo stash:
  git stash pop
Enter fullscreen mode Exit fullscreen mode
Para recuperar e manter o ultimo stash:
  git stash apply
Enter fullscreen mode Exit fullscreen mode
Para criar um stash com identificação:
  git stash save nome_do_stash
ou
  git stash save 'nome do stash'
Enter fullscreen mode Exit fullscreen mode
Para recuperar e manter um stash especifico:
  git stash apply stash@{n}
ou
  git stash apply n
Enter fullscreen mode Exit fullscreen mode
Para recuperar e apagar um stash especifico:
  git stash pop stash@{n}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)