git stash show -p
Shows the content of the last stash
Shows the content of the last stash as it was at the moment the stash was created.
The -p
flag is one of several "diff-options" flags. It ensures the contents are shown in a format that can be applied as a patch, which is also a good format for humans to analyse the changes.