(repo_root: Path, key: str, value: str)
| 224 | |
| 225 | |
| 226 | def _git_config(repo_root: Path, key: str, value: str) -> None: |
| 227 | _run_git(repo_root, ["config", key, value], check=True) |
| 228 | |
| 229 | |
| 230 | def _unset_git_config(repo_root: Path, key: str) -> None: |
no test coverage detected