(self,
repo_dir: str,
remote: str = 'origin',
branch: str = 'master')
| 128 | raise GitError(str(exc)) from exc |
| 129 | |
| 130 | def pull(self, |
| 131 | repo_dir: str, |
| 132 | remote: str = 'origin', |
| 133 | branch: str = 'master'): |
| 134 | return self._run_git_command('-C', repo_dir, 'pull', remote, branch) |
| 135 | |
| 136 | def push(self, |
| 137 | repo_dir: str, |
nothing calls this directly
no test coverage detected