In order to list the stashed modifications use this:
git stash list
In order to show files changed in the last stash use the this:
git stash show
In order to view the content of the most recent stash, run the following command
git stash show -p
In order to view the content of an arbitrary stash, run the following command
git stash show -p stash@{1}