$ git stash show -p
git stash --all
$ git stash
Saved working directory and index state WIP on master:
2dfe283 Implement the new login box
HEAD is now at 2dfe283 Implement the new login box
// What is stash changes in git?
// git stash temporarily shelves (or stashes) changes you've made to your working copy
// so you can work on something else, and then come back and re-apply them later on.
git stash
$ git diff stash@{0} master