git copy stash entry from one repo to another code example
Example: git copy stash entry from one repo to another
git stash show -p > patch
cd /new/project/dir
git apply /old/project/dir/patchfile
git stash
git stash show -p > patch
cd /new/project/dir
git apply /old/project/dir/patchfile
git stash