()
| 50 | } |
| 51 | |
| 52 | func (g *gitExecuter) CurrentBranch() (string, error) { |
| 53 | return g.client.CurrentBranch(context.Background()) |
| 54 | } |
| 55 | |
| 56 | func (g *gitExecuter) Fetch(remote, ref string) error { |
| 57 | args := []string{"fetch", "-q", remote, ref} |
nothing calls this directly
no test coverage detected