DEV Community

Cover image for How to continue a git rebase process?
MELVIN GEORGE
MELVIN GEORGE

Posted on • Originally published at melvingeorge.me

How to continue a git rebase process?

Originally posted here!

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
Enter fullscreen mode Exit fullscreen mode

That's it.

Feel free to share if you found this useful 😃.


Top comments (0)