How to continue a git rebase process?

January 12, 2021 - 1 min read

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.

Feel free to share if you found this useful 😃.