$ git stash push -m "my example stash" example.txt
$ git stash push example.txt
# interactive
git stash -p
# interactive with message
git stash -pm "message"
git diff stash^! -- path/to/relevant/file/in/stash.ext perhaps/another/file.ext > my.patch
git apply < my.patch
# interactive
git stash -p