(ctx context.Context, config *branches.Config)
| 134 | } |
| 135 | |
| 136 | func (p *Pool) openBranch(ctx context.Context, config *branches.Config) (*Branch, error) { |
| 137 | return OpenBranch(ctx, config, p.engine, p.Path, p) |
| 138 | } |
| 139 | |
| 140 | func (p *Pool) OpenBranchByName(ctx context.Context, name string) (*Branch, error) { |
| 141 | branchRef, err := p.LookupBranchByName(ctx, name) |
no test coverage detected