(remote: str)
| 168 | |
| 169 | |
| 170 | def head_rev(remote: str) -> str: |
| 171 | _, out, _ = cmd_output('git', 'ls-remote', '--exit-code', remote, 'HEAD') |
| 172 | return out.split()[0] |
| 173 | |
| 174 | |
| 175 | def has_diff(*args: str, repo: str = '.') -> bool: |
nothing calls this directly
no test coverage detected