Git Copy Stash Entry dari satu repo ke repo lainnya
git stash show -p > patch
cd /new/project/dir
git apply /old/project/dir/patchfile
git stash
Poised Partridge
git stash show -p > patch
cd /new/project/dir
git apply /old/project/dir/patchfile
git stash