Sometimes during a Git rebase process, you may encounter some merge conflicts and Git asks you to resolve the conflicts to move forward with the rebasing.
After resolving the conflicts and to move forward with the rebase process, you need to use the --continue
flag on the git rebase
command.
It can be done like this,
git rebase --continue
That's it.