(key string, value string)
| 355 | } |
| 356 | |
| 357 | func (self *Shell) SetConfig(key string, value string) *Shell { |
| 358 | self.RunCommand([]string{"git", "config", "--local", key, value}) |
| 359 | return self |
| 360 | } |
| 361 | |
| 362 | func (self *Shell) CloneIntoRemote(name string) *Shell { |
| 363 | self.Clone(name) |
no test coverage detected