Last active
October 7, 2015 10:18
-
-
Save 573/29d224061cc3278c8f66 to your computer and use it in GitHub Desktop.
git list the contents of each of the stashes
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
git show $(git stash list | cut -d":" -f 1) |
$ git show $(git stash list | cut -d":" -f 1) --name-only # list the contents of each of the stashes, file names only
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(http://mwilden.blogspot.de/2009/05/listing-contents-of-your-git-stash.html)