I often put work away for later, then other stuff comes along, and a few weeks later, I want to inspect the stash, and find out what changes it would make if I applied it to
To view a current list of stash:
git stash list
You'll see a list like this:
stash@{0}: WIP on ... stash@{1}: ... stash@{2}: ... ...
To view diff on any of those stashes:
git stash show -p stash@{n}