We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfaca9f commit 6cd1d10Copy full SHA for 6cd1d10
src/codegen/git/repo_operator/remote_repo_operator.py
@@ -36,15 +36,12 @@ def __init__(
36
self,
37
repo_config: RepoConfig,
38
base_dir: str = "/tmp",
39
- commit: str | None = None,
40
setup_option: SetupOption = SetupOption.PULL_OR_CLONE,
41
shallow: bool = True,
42
bot_commit: bool = True,
43
) -> None:
44
super().__init__(repo_config=repo_config, base_dir=base_dir, bot_commit=bot_commit)
45
self.setup_repo_dir(setup_option=setup_option, shallow=shallow)
46
- if commit:
47
- self.checkout_commit(commit)
48
49
####################################################################################################################
50
# PROPERTIES
0 commit comments