We've done something bad.

We ran git stash save during a merge conflict, and now we can't restore our work.

Things we've tried:

git pull -Xours origin master
git stash apply --index

And:

 git pull origin master
 git stash save --keep-index "merge conflicts"
 git stash apply stash@{1}

Please help!

link|improve this question
Did you actually do anything significant? (Do you actually need to restore the stashed changes?) Can you just reset away the attempted merge, and do it over again? – Jefromi Jan 25 at 21:17
Yes and no, respectively. The changes consist of more than one day of merge conflict resolution. – bukzor Jan 25 at 21:56
1  
@bukzor: If you need more then one day for merge conflict resolution it might be time to rethink your policies regarding branch handling and work distribution (or merge frequency). Such lengthy merge resolutions are afterall a nice source of hard to find bugs due to the amount of changes done in one commit – Grizzly Jan 26 at 2:12
What error did you get? Why not a simple 'git stash apply'? – inger Mar 1 at 1:57
feedback

1 Answer

When you are in a conflicted state ( index and working directory), you will not be able to do git stash - it will give an error sating unmerged entries.

Make sure that you have really done a stash. See output of git stauts and git stash show

link|improve this answer
Prior to git stash, I have resolved the conflicts and proceed to use git add. It was after I have git add my resolutions, I made further edits and then did a git stash save msg. So that did succeed. – steven_moy Jan 26 at 18:25
feedback

Your Answer

 
or
required, but never shown

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