git stash list
# stash@{0}: WIP on (no branch): 990d130 Update process model to hanle more graciously seq with no registration
# stash@{1}: WIP on master: 82bfc86 Fix residual conflict in dev project
# stash@{2}: WIP on master: 90e640d Merge branch 'master' of ...
git stash show -p stash@{0}
# Show the files in the most recent stash:
git stash show
# Show the changes of the most recent stash:
git stash show -p
# Show the changes of the named stash:
git stash show -p stash@{1}
git stash show -p stash@{1}