Created
May 2, 2012 00:56
-
-
Save viktorkelemen/2572745 to your computer and use it in GitHub Desktop.
git diff stash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // get a list of stashes | |
| git stash list | |
| // stash diff where the number is the index in the stash list | |
| git diff stash@{0} | |
| // stash@{0} is the default | |
| git diff stash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment