(repo_dir: Path, branch: str)
| 1378 | input=input, |
| 1379 | capture_output=True, |
| 1380 | check=check, |
| 1381 | timeout=timeout, |
| 1382 | ) |
| 1383 | |
| 1384 | |
| 1385 | def _git_output(args: List[str], cwd: Path, *, timeout: int = 60) -> str: |
| 1386 | result = _run_git(args, cwd, timeout=timeout) |
| 1387 | return (result.stdout or "").strip() |
| 1388 | |
| 1389 |
no test coverage detected