(message string)
| 167 | } |
| 168 | |
| 169 | func (self *Shell) Commit(message string) *Shell { |
| 170 | return self.RunCommand([]string{"git", "commit", "-m", message}) |
| 171 | } |
| 172 | |
| 173 | func (self *Shell) CommitInWorktreeOrSubmodule(worktreePath string, message string) *Shell { |
| 174 | return self.RunCommand([]string{"git", "-C", worktreePath, "commit", "-m", message}) |
no test coverage detected