(name string)
| 147 | } |
| 148 | |
| 149 | func (self *Shell) Checkout(name string) *Shell { |
| 150 | return self.RunCommand([]string{"git", "checkout", name}) |
| 151 | } |
| 152 | |
| 153 | func (self *Shell) Merge(name string) *Shell { |
| 154 | return self.RunCommand([]string{"git", "merge", "--commit", "--no-ff", name}) |
no test coverage detected