(args: List[str], cwd: Path, *, timeout: int = 60)
| 1373 | ) -> subprocess.CompletedProcess[str]: |
| 1374 | return subprocess.run( |
| 1375 | ["git", *args], |
| 1376 | cwd=str(cwd), |
| 1377 | text=True, |
| 1378 | input=input, |
| 1379 | capture_output=True, |
| 1380 | check=check, |
no test coverage detected