pub fn continue_rebase(executor: &dyn ProcessExecutor) -> Result<()>Expand description
Continue a rebase after conflict resolution.
This function continues a rebase that was paused due to conflicts.
It should be called after all conflicts have been resolved and
the resolved files have been staged with git add.
ยงReturns
Returns Ok(()) if successful, or an error if:
- No rebase is in progress
- Conflicts remain unresolved
- The continue operation fails
Note: This function uses the current working directory to discover the repo.