(branch string)
| 22 | } |
| 23 | |
| 24 | func (g *gitExecuter) CheckoutBranch(branch string) error { |
| 25 | return g.client.CheckoutBranch(context.Background(), branch) |
| 26 | } |
| 27 | |
| 28 | func (g *gitExecuter) Clone(cloneURL string, cloneArgs []string) (string, error) { |
| 29 | return g.client.Clone(context.Background(), cloneURL, cloneArgs) |
nothing calls this directly
no test coverage detected