(self)
| 179 | MESSAGE = "Commit to local branch." |
| 180 | |
| 181 | def RunStep(self): |
| 182 | # Add a commit message title. |
| 183 | self["commit_title"] = "Version %s (cherry-pick)" % self["version"] |
| 184 | self["new_commit_msg"] = "%s\n\n%s" % (self["commit_title"], |
| 185 | self["new_commit_msg"]) |
| 186 | TextToFile(self["new_commit_msg"], self.Config("COMMITMSG_FILE")) |
| 187 | self.GitCommit(file_name=self.Config("COMMITMSG_FILE")) |
| 188 | |
| 189 | |
| 190 | class CommitRepository(Step): |
nothing calls this directly
no test coverage detected