(branch string)
| 102 | } |
| 103 | |
| 104 | func (r *Repository) DiscardLocalRepoBranchChanges(branch string) error { |
| 105 | return discardLocalRepoBranchChanges(r.LocalCopyPath(), branch) |
| 106 | } |
| 107 | |
| 108 | // CheckoutNewBranch checks out to a new branch from the a branch name. |
| 109 | func (r *Repository) CheckoutNewBranch(oldBranch, newBranch string) error { |
no test coverage detected