I'm doing a git stash in which I keep a personalized message:
git stash save 'mi mensaje'
I'm trying to read that message.
I can use:
git stash show
and so I can see a list of the saved files. If I use it in the following way:
git stash show -1
I get a diff of those files, but not the message.
How can I see the message?