To export a stash to another computer, for that you could use:
You can apply a patch file (without committing the changes yet) by simply running
git apply patchfile
Then you can simply create a new stash from the current working directory:
git stash
This will export your stash file to another computer.