(self)
| 11 | MESSAGE = "Preparation." |
| 12 | |
| 13 | def RunStep(self): |
| 14 | self.GitCheckout("origin/main") |
| 15 | self.Git("fetch origin +refs/heads/*:refs/heads/*") |
| 16 | self.DeleteBranch("work-branch") |
| 17 | |
| 18 | |
| 19 | class PrepareBranchRevision(Step): |
nothing calls this directly
no test coverage detected