(self)
| 100 | MESSAGE = "Create the branch." |
| 101 | |
| 102 | def RunStep(self): |
| 103 | self.Git("reset --hard origin/main") |
| 104 | self.Git("new-branch work-branch --upstream origin/%s" % self["version"]) |
| 105 | self.GitCheckoutFile(VERSION_FILE, self["latest_version"]) |
| 106 | |
| 107 | |
| 108 | class SetVersion(Step): |
nothing calls this directly
no test coverage detected