Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As asked in this question, I also want to know how to resolve a conflicting git stash pop without adding all modifications to a commit (just like "git stash pop" without a conflict does).

My current approach is very uncool because I do it this way:

git stash pop -> CONFLICT
git stash drop
[resolve conflict]
[add conflict files]
git reset HEAD <all files that are in commit-mode>

[Update] A way to reproduce it:

mkdir foo; cd foo; git init
echo "1" > one
echo "2" > two
git add -A; git commit -m "first"
echo "1.1" > one
echo "2.1" > two
git stash
echo "2.2" > two
git commit -a -m "second"; git stash pop; git status
share|improve this question
So you git add your resolved conflict files, effectively staging them in the index, and you'd want to not have them in our index? – Romain Oct 14 '11 at 8:55
Yes, thats right. I just want the behavior that git stash pop has when no conflict occurs (but with notification which files need to be merged). – Sven Oct 14 '11 at 10:22
2  
Seems like the answer for this is here: stackoverflow.com/questions/3945826/git-stash-questions. In the chosen answer, on the 4th comment, Adam explains why git does this. – Patrick Feb 10 '12 at 13:41
@Patrick Thank you for this information - so it seems there will be no solution available because its "by design" – Sven Feb 24 '12 at 7:19

2 Answers

Instead of adding the changes you make to resolve the conflict, you can use git reset HEAD file to resolve the conflict without staging your changes.

You may have to run this command twice, however. Once to mark the conflict as resolved and once to unstage the changes that were staged by the conflict resolution routine.

It is possible that there should be a reset mode that does both of these things simultaneously, although there is not one now.

share|improve this answer
The reset mode is the one I search for - other workarounds are like the one I described and not practical for more than 5 files. – Sven Nov 1 '11 at 7:38

It seems that this may be the answer you're looking for, I haven't tried this personally yet, but it seems like it may do the trick. With this command GIT will try to apply the changes as they were before, without trying to add all of them for commit.

git stash apply --index

here is the full explanation:

http://progit.org/book/ch6-3.html

share|improve this answer
Thanks for this hint, but this won't help when I already did git stash pop - or is there a way to revert this and to do git stash apply --index when I found out that git stash pop will run into a conflict? – Sven Mar 2 '12 at 6:53
I've added an example on how to produce this - imagine you're editing more than 10 files, so you don't know which of them you modified outside the stash. – Sven Mar 2 '12 at 6:59
2  
If you look at the bottom of this post HERE it says that if you run git stash pop and it ends up with conflicts, the stash does not get removed...so you can run git reset --hard to undo the pop and then try the solution I suggested. – Marco Ponti Mar 2 '12 at 14:57
YES! Thank you. Works perfectly. – Trip Jun 1 '12 at 20:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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