(self, repo_dir: str)
| 180 | return ['/'.join(line.split('/')[1:]) for line in info[1:]] |
| 181 | |
| 182 | def get_repo_remote_url(self, repo_dir: str) -> str: |
| 183 | rsp = self._run_git_command('-C', repo_dir, 'config', '--get', |
| 184 | 'remote.origin.url') |
| 185 | return rsp.stdout.strip() |
| 186 | |
| 187 | # ------------------------------------------------------------------ |
| 188 | # Tags |
no test coverage detected