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?
git add--interactive --patch=stashisn't working right. – Jefromi Feb 19 '11 at 0:27add -pto get everything you want to keep into the index, thenstash --keep-indexto stash away the other parts. – Jefromi Feb 19 '11 at 1:06