(authorName string, authorEmail string)
| 518 | } |
| 519 | |
| 520 | func (self *Shell) SetAuthor(authorName string, authorEmail string) *Shell { |
| 521 | self.RunCommand([]string{"git", "config", "--local", "user.name", authorName}) |
| 522 | self.RunCommand([]string{"git", "config", "--local", "user.email", authorEmail}) |
| 523 | |
| 524 | return self |
| 525 | } |
no test coverage detected