Check what's stashed and the changes they introduce.

See the list of stashed changes.

git stash list

See the diff for a stashed changeset.

git stash show -p stash@{n} where n is the value shown when doing git stash list.

Source