()
| 57 | } |
| 58 | |
| 59 | func (g *gitExecuter) CurrentBranch() (string, error) { |
| 60 | return g.client.CurrentBranch(context.Background()) |
| 61 | } |
| 62 | |
| 63 | func (g *gitExecuter) Fetch(remote, ref string) error { |
| 64 | args := []string{"fetch", "-q", remote, ref} |
nothing calls this directly
no test coverage detected