I've made a pull with rebase:
git pull --rebase
After two commits were successfully applied I started applying the third one. It the middle of this I realized that I did it wrong and it would be good to undo it. Of course I can do git
rebase --abort
but then I'll loose all the work I've done (two applied commits).
Is there any way to undo the process of applying current commit during rebase and start merging again?