I need a way to export a stashed change to another computer.
On computer 1 I did
$ git stash save feature
I\'m trying to get the stash
If you want to move your changes from one machine to another you could always commit your changes on your machine and then do a soft reset on their machine.
Office
git commit -m "-stash-"
Kitchen
git reset --soft HEAD~1