MCPcopy Create free account
hub / github.com/BillHuang2001/evogit / continue_rebase

Function continue_rebase

python-impl/evogit/utils/git.py:612–622  ·  view source on GitHub ↗

Continue the rebase process.

(config: EvoGitConfig)

Source from the content-addressed store, hash-verified

610
611
612def 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
625def handle_conflict(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected