(remote, branch string)
| 52 | } |
| 53 | |
| 54 | func (g *gitExecuter) Pull(remote, branch string) error { |
| 55 | return g.client.Pull(context.Background(), remote, branch) |
| 56 | } |
| 57 | |
| 58 | func (g *gitExecuter) Remotes() (git.RemoteSet, error) { |
| 59 | return g.client.Remotes(context.Background()) |