(ctx context.Context, poolID ksuid.KSUID, name string)
| 368 | } |
| 369 | |
| 370 | func (r *Root) RemoveBranch(ctx context.Context, poolID ksuid.KSUID, name string) error { |
| 371 | pool, err := r.OpenPool(ctx, poolID) |
| 372 | if err != nil { |
| 373 | return err |
| 374 | } |
| 375 | return pool.removeBranch(ctx, name) |
| 376 | } |
| 377 | |
| 378 | // MergeBranch merges the indicated branch into its parent returning the |
| 379 | // commit tag of the new commit into the parent branch. |
nothing calls this directly
no test coverage detected