If you’ve ever wondered how to see the contents of files within a Git stash, you are not alone.

List your Git stashes with:

git stash list

Then show the contents of the stash with:

git stash show -p stash@{stash_number}