(message string, daysAgo int)
| 183 | } |
| 184 | |
| 185 | func (self *Shell) EmptyCommitDaysAgo(message string, daysAgo int) *Shell { |
| 186 | return self.RunCommand([]string{"git", "commit", "--allow-empty", "--date", fmt.Sprintf("%d days ago", daysAgo), "-m", message}) |
| 187 | } |
| 188 | |
| 189 | func (self *Shell) EmptyCommitWithDate(message string, date string) *Shell { |
| 190 | env := []string{ |
no test coverage detected