(message string)
| 175 | } |
| 176 | |
| 177 | func (self *Shell) EmptyCommit(message string) *Shell { |
| 178 | return self.RunCommand([]string{"git", "commit", "--allow-empty", "-m", message}) |
| 179 | } |
| 180 | |
| 181 | func (self *Shell) EmptyCommitWithBody(subject string, body string) *Shell { |
| 182 | return self.RunCommand([]string{"git", "commit", "--allow-empty", "-m", subject, "-m", body}) |
no test coverage detected