$ cd ../
$ cat /backups/brain/
0008
git stash

Store working dir:

1
git stash push -m "Descriptive"

List previously saved stashes:

1
git stash list

Restore from stash:

1
git stash pop stash@\{0\}
$ cd ../