(name: str, repo: str = '.')
| 203 | |
| 204 | |
| 205 | def git_path(name: str, repo: str = '.') -> str: |
| 206 | _, out, _ = cmd_output('git', 'rev-parse', '--git-path', name, cwd=repo) |
| 207 | return os.path.join(repo, out.strip()) |
| 208 | |
| 209 | |
| 210 | def check_for_cygwin_mismatch() -> None: |
nothing calls this directly
no test coverage detected