(path string)
| 159 | } |
| 160 | |
| 161 | func (self *Shell) GitAdd(path string) *Shell { |
| 162 | return self.RunCommand([]string{"git", "add", path}) |
| 163 | } |
| 164 | |
| 165 | func (self *Shell) GitAddAll() *Shell { |
| 166 | return self.RunCommand([]string{"git", "add", "-A"}) |
no test coverage detected