vote up 4 vote down star

In git, is it possible to create a stash, push the stash to a remote repository, retrieve the stash on another computer, and apply the stash?

Or are my options:

  • Create a patch and copy the patch to the other computer, or
  • Create a minor branch and commit the incomplete work to that branch?
flag

72% accept rate

2 Answers

vote up 4 vote down check

It's not possible to get it via fetch or so, the mirror refspec is fetch = +refs/*:refs/*, and even though stash is refs/stash it doesn't get sent. An explicit refs/stash:refs/stash has no effect either!

It would only be confusing anyway since that wouldn't fetch all stashes, only the latest one; the list of stashes is the reflog of the ref refs/stashes.

link|flag
vote up 4 vote down

I'd go with second approach although no idea why you can't commit it to master/featured branch . It is possible to do cherry-picking too.

link|flag
There's no technical reason not to commit to master/featured, just that I want to say "This isn't a real commit, it's just saving my work so I can get it on another machine". – Andrew Grimm Oct 11 at 23:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.