(self, op_cb=None)
| 1094 | self._fuse(commits, op_cb=op_cb) |
| 1095 | |
| 1096 | def fuse_continue(self, op_cb=None): |
| 1097 | if not self.fuse_in_progress: |
| 1098 | raise GlError('No fuse in progress, nothing to continue') |
| 1099 | commits = self._load_fuse_commits() |
| 1100 | self._fuse(commits, op_cb=op_cb) |
| 1101 | |
| 1102 | def _fuse(self, commits, op_cb=None): |
| 1103 | git_repo = self.gl_repo.git_repo |
nothing calls this directly
no test coverage detected