menu
List the stashes:
git stash list

Show the files in the most recent stash:
git stash show

Show the changes in the most recent stash:
git stash show -p

Show the changes in the named stash:
git stash show -p stash@{1}

Or in short:
git stash show -p 1