- Step 1:Â Keep goingÂ
git rebase --continue
- Step 2:Â fix CONFLICTS thenÂ
git add .
- Back to step 1, now if it saysÂ
no changes ..
 then runÂgit rebase --skip
 and go back to step 1
- If you just want to quit rebase runÂ
git rebase --abort
- Once all changes are done runÂ
git commit -m "rebase complete"
 and you are done.
Note: If you don't know what's going on and just want to go back to where the repo was, then just do:git rebase --abort
Read about rebase:Â git-rebase doc