I did a git stash pop and ended up with merge conflicts. I removed the files from the file system and did a git checkout as shown below, but it thi
git stash pop
git checkout
I had a similar thing happen to me. I didn't want to stage the files just yet so I added them with git add and then just did git reset. This basically just added and then unstaged my changes but cleared the unmerged paths.
git add
git reset