Continue the rebase process.
(config: EvoGitConfig)
| 610 | |
| 611 | |
| 612 | def continue_rebase(config: EvoGitConfig) -> None: |
| 613 | """Continue the rebase process.""" |
| 614 | # GIT_EDITOR=true is used to disable the interactive editor |
| 615 | # and accept the default commit message |
| 616 | subprocess.run( |
| 617 | ["git", "rebase", "--continue"], |
| 618 | cwd=config.git_dir, |
| 619 | env=os.environ | {"GIT_EDITOR": "true"}, |
| 620 | stdout=subprocess.DEVNULL, |
| 621 | stderr=subprocess.DEVNULL, |
| 622 | ) |
| 623 | |
| 624 | |
| 625 | def handle_conflict( |
nothing calls this directly
no outgoing calls
no test coverage detected