I was rebasing code in git, I got some merge conflicts. I resolved the conflicts and did:
git add
At this point I forgot to do:
<
EDIT: Look at the answer below as well to see if that's an easier solution for you. https://stackoverflow.com/a/12163247/493106
I'd have to try it out, but I think this is what I would do:
git tag tempgit rebase --abortgit rebase --continuegit cherry-pick tempThe problem with this is that your temp commit probably contains both the resolution of the merge, and the new code. So it could be tricky but I would try it and see if it works.