Git Copy Stash Entry de un repositorio a otro

git stash show -p > patch

cd /new/project/dir
git apply /old/project/dir/patchfile
git stash
Poised Partridge