(self)
| 424 | self._repo.git.submodule('update', '--init', '--recursive') |
| 425 | |
| 426 | def clear_cache(self): |
| 427 | self._repo.git.clear_cache() |
| 428 | |
| 429 | def fetch_remote_by_index(self, index): |
| 430 | self._repo.remotes[index].fetch() |
nothing calls this directly
no test coverage detected