$ git stash
$ git stash save "Your stash message"# stash with message$ git stash save -u# stash untracked files, as same as `git stash save --include-untracked`$ git stash list
$ git stash apply stash@{1}$ git stash pop # stash apply and delete it$ git stash pop stash@{1}$ git stash drop stash@{1}$ git stash show stash@{1}#$ git stash clear # deletes all the stashes$ git stash branch <name> stash@{1}# creates a new branch with the latest stash, and then deletes the latest stash