Forgot “git rebase –continue” and did “git commit”. How to fix?
Just do git reset –soft HEAD^. It moves the HEAD pointer to its parent but keeps the work tree and adds the merge change to the index. So you can continue rebasing with git rebase –continue as before.