Git Stash

Add to stash

$ git stash
$ git stash [save]

List stashes

$ git stash list

Get from stash

  • Might conflict

$ git stash pop
$ git stash apply

Clear stash

$ git stash drop
$ git stash clear