I popped a stash and there was a merge conflict. Unlike the question that is listed as a duplicate, I already had some uncommitted changes in the directory which I wanted to keep. I don't just want to make the merge conflict disappear, but also to get my directory back to the state it was before the pop.

I tried git merge --abort, but git claimed no merge was in progress. Is there an easy way to abort a pop without destroying the changes I originally had in the directory?

link|improve this question

1  
say what????????????????????????????? – Артём Царионов Dec 15 '11 at 5:56
This is not a duplicate - in that question the user didn't have changes they were trying to preserve – Casebash Dec 15 '11 at 6:49
1  
You can please explain clearly in your question that why is this not a duplicate? If it makes sense, will vote to reopen. – zengr Dec 15 '11 at 6:52
1  
@zengr: Is it clear now? – Casebash Dec 15 '11 at 7:03
@Casebash it is for me, just one more reopen vote needed. – Benoit Garret Dec 15 '11 at 9:33
show 2 more comments
feedback

1 Answer

Use git reflog to list all changes made in your git history. Copy an action id and type git reset ACTION_ID

link|improve this answer
Git doesn't create a reflog entry before you pop (you need to have a commit) – Casebash Dec 22 '11 at 1:23
feedback

Your Answer

 
or
required, but never shown

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