show the contents of a git stash

I always have to look this up! When I am switching branches, sometimes I stash and then I can't recall what is in the stash.

git stash list shows all the stashes.

git stash show shows the files that were changed.

git stash show -p shows theĀ patch with the changes.

git stash show -p <N> shows the Nth patch, shortcut for stash@{N}