Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (29.3k points)

 I need a way to export a stashed change to another computer.

On Computer1 I did

$ git stash save feature

I'm trying to get the stash patch to a file and then import it to another computer

$ git stash show -p > patch

This command gives me a file that I can move to another computer where this repo is cloned, but the question is how to import it as a stash again.

1 Answer

0 votes
by (50.2k points)

To export a stash to another computer, for that you could use: 

You can apply a patch file (without committing the changes yet) by simply running

git apply patchfile

Then you can simply create a new stash from the current working directory:

git stash

This will export your stash file to another computer.

Related questions

1.2k questions

2.7k answers

501 comments

693 users

Browse Categories

...