(*args: str)
| 212 | |
| 213 | |
| 214 | def _git_command(*args: str) -> list[str]: |
| 215 | return [ |
| 216 | "git", |
| 217 | "-c", |
| 218 | "credential.helper=", |
| 219 | "-c", |
| 220 | "core.hooksPath=/dev/null", |
| 221 | "-c", |
| 222 | "filter.lfs.smudge=", |
| 223 | "-c", |
| 224 | "filter.lfs.required=false", |
| 225 | *args, |
| 226 | ] |
| 227 | |
| 228 | |
| 229 | def _run_local(argv: Sequence[str], *, cwd: Path | None = None) -> str: |
no outgoing calls
no test coverage detected