How to skip a commit during the git rebase process?

January 13, 2021 - 1 min read

Sometimes during a Git rebase process, you may encounter some conflicting commits and wants to skip the specific commit for some reason.

You can do that by passing the --skip flag in the git rebase command.

It can be done like this,

git rebase --skip

Be sure to check not to skip an important commit during the rebase process.

Feel free to share if you found this useful 😃.