I usually rebase when I pull in changes from my teammates, and often time I have conflicts:
rebase
... CONFLICT (content): Merge conflict in app/views/sear
I found myself in the same boat and git rebase --continue didn't help. Running rm -fr .git/rebase-apply fixed the issue though
git rebase --continue
rm -fr .git/rebase-apply