Skip to content

Instantly share code, notes, and snippets.

@573
Last active October 7, 2015 10:18
Show Gist options
  • Save 573/29d224061cc3278c8f66 to your computer and use it in GitHub Desktop.
Save 573/29d224061cc3278c8f66 to your computer and use it in GitHub Desktop.
git list the contents of each of the stashes
git show $(git stash list | cut -d":" -f 1)
@573
Copy link
Author

573 commented Oct 7, 2015

$ 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