← All notes

git stash

Store working dir:

git stash push -m "Descriptive"

List previously saved stashes:

git stash list

Restore from stash:

git stash pop stash@\{0\}