I ♥ git stash -p. But sometimes, after a satisfying session of y, n, and s, I get this:

Saved working directory and index
state WIP on foo: 9794c1a lorum ipsum
error: patch failed:
spec/models/thing_spec.rb:65 error:
spec/models/thing_spec.rb: patch does
not apply Cannot remove worktree
changes

Why?

link|improve this question

68% accept rate
Looks like a pretty definite bug... it failed the first time I tried splitting (and choosing to keep only one of the two resulting hunks). As for why... obviously it doesn't generate the proper patch at some point in its operations (probably when rolling back the selected changes), but for the details, I might go to the mailing list, unless you have time to dive into the source. – Jefromi Feb 19 '11 at 0:03
1  
I'm digging deeper; I'll send something to the mailing list eventually and post here when I do. I want to see if I can actually figure out how to fix it, instead of just telling them that git add--interactive --patch=stash isn't working right. – Jefromi Feb 19 '11 at 0:27
3  
Phew, too much mucking about with indices for a Friday night. My email to the list is here. – Jefromi Feb 19 '11 at 0:51
9  
In the meantime, you could work around this by simply using add -p to get everything you want to keep into the index, then stash --keep-index to stash away the other parts. – Jefromi Feb 19 '11 at 1:06
feedback

1 Answer

Applying the state can fail with conflicts; in this case, it is not removed from the stash list. You need to resolve the conflicts by hand and call git stash drop manually afterwards

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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