(repo_root: Path, rel_path: str)
| 467 | |
| 468 | |
| 469 | def git_last_touched(repo_root: Path, rel_path: str) -> date | None: |
| 470 | return _git_log_date(repo_root, rel_path) |
| 471 | |
| 472 | |
| 473 | def git_last_content_updated(repo_root: Path, rel_path: str) -> tuple[date | None, bool]: |
no test coverage detected