git stash save -- just_my_file.txt
$ git stash push example.txt
$ git stash -- filename.ext
# interactive
git stash -p
# interactive with message
git stash -pm "message"
git stash push -m "describe changes to filename.ext" filename.ext
# interactive
git stash -p