I have two git clones of same remote repository. I have created several stashes in clone A and now want to move those stashes to clone B.
[Clone A] ---- stashes ---> [Clone B]
One workaround I could think of is creating branch for each stash and push that branch to remote through Clone A, and then pull these branches into Clone B. But this is not I would prefer to do.
Could anyone suggest any easier and cleaner way (like copying) of doing it?