How to skip a commit during the git rebase process?
Published January 13, 2021
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