Reputation: 41
I am using git version 2.32.0 I just want to export the full stash list saved in my old laptop to new laptop. How can I do so?
Upvotes: 1
Views: 1370
Reputation: 535556
You can export each stash to a patch file with git stash show -p
and apply it on the other machine. But the best way is: Don't even try. Zip up the whole working tree on the old laptop and move it to the new laptop and use it there. Actually what I do is rsync
between machines.
Upvotes: 2