(newName string)
| 143 | } |
| 144 | |
| 145 | func (self *Shell) RenameCurrentBranch(newName string) *Shell { |
| 146 | return self.RunCommand([]string{"git", "branch", "-m", newName}) |
| 147 | } |
| 148 | |
| 149 | func (self *Shell) Checkout(name string) *Shell { |
| 150 | return self.RunCommand([]string{"git", "checkout", name}) |
no test coverage detected