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 848b9dc commit fd7b3b3Copy full SHA for fd7b3b3
src/gitingest/clone.py
@@ -14,7 +14,6 @@ class CloneConfig:
14
branch: str | None = None
15
16
17
-
18
async def check_repo_exists(url: str) -> bool:
19
"""
20
Check if a repository exists at the given URL using an HTTP HEAD request.
@@ -45,7 +44,6 @@ async def check_repo_exists(url: str) -> bool:
45
44
46
47
async def run_git_command(*args: str) -> tuple[bytes, bytes]:
48
49
50
Executes a git command asynchronously and captures its output.
51
@@ -111,7 +109,6 @@ async def clone_repo(config: CloneConfig) -> tuple[bytes, bytes]:
111
109
commit: str | None = config.commit
112
110
branch: str | None = config.branch
113
114
115
if not url:
116
raise ValueError("The 'url' parameter is required.")
117
0 commit comments