(remote string, refspec string)
| 42 | } |
| 43 | |
| 44 | func (g *gitExecuter) Fetch(remote string, refspec string) error { |
| 45 | return g.client.Fetch(context.Background(), remote, refspec) |
| 46 | } |
| 47 | |
| 48 | func (g *gitExecuter) ForRepo(repoDir string) gitClient { |
| 49 | gc := g.client.Copy() |