(branch string)
| 63 | } |
| 64 | |
| 65 | func (g *gitExecuter) HasLocalBranch(branch string) bool { |
| 66 | return g.client.HasLocalBranch(context.Background(), branch) |
| 67 | } |
| 68 | |
| 69 | func (g *gitExecuter) IsAncestor(ancestor, progeny string) (bool, error) { |
| 70 | args := []string{"merge-base", "--is-ancestor", ancestor, progeny} |
nothing calls this directly
no test coverage detected