(cloneURL string, cloneArgs []string)
| 26 | } |
| 27 | |
| 28 | func (g *gitExecuter) Clone(cloneURL string, cloneArgs []string) (string, error) { |
| 29 | return g.client.Clone(context.Background(), cloneURL, cloneArgs) |
| 30 | } |
| 31 | |
| 32 | func (g *gitExecuter) CommandOutput(args []string) ([]byte, error) { |
| 33 | cmd, err := g.client.Command(context.Background(), args...) |