Assume the following scenario:

file a and b are both modified, and a is staged in the index. If you run git stash and then git stash pop, file a is no longer staged.

How you make git stash return the index to the previous state?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 6 down vote accepted

If I understand correctly, I think you just need:

git stash pop --index
link|improve this answer
2  
This should really be the default IMHO. – MatrixFrog Feb 4 '11 at 2:37
4  
@MatrixFrog: My first instinct would be to agree, but there's a probable reason, descriped in the manpage: "this can fail, when you have conflicts (which are stored in the index, where you therefore can no longer apply the changes as they were originally)." Arguably it should still be the default when there aren't conflicts, though... – Jefromi Feb 4 '11 at 6:36
feedback

Your Answer

 
or
required, but never shown

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