()
| 155 | } |
| 156 | |
| 157 | func (self *Shell) ContinueMerge() *Shell { |
| 158 | return self.RunCommand([]string{"git", "-c", "core.editor=true", "merge", "--continue"}) |
| 159 | } |
| 160 | |
| 161 | func (self *Shell) GitAdd(path string) *Shell { |
| 162 | return self.RunCommand([]string{"git", "add", path}) |