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
git addyour 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:55git stash pophas when no conflict occurs (but with notification which files need to be merged). – Sven Oct 14 '11 at 10:22