CopyRepository copies everything from the src GCR repository to the dst GCR repository.
(ctx context.Context, src, dst string, opts ...Option)
| 70 | // CopyRepository copies everything from the src GCR repository to the |
| 71 | // dst GCR repository. |
| 72 | func CopyRepository(ctx context.Context, src, dst string, opts ...Option) error { |
| 73 | o := makeOptions(opts...) |
| 74 | return recursiveCopy(ctx, src, dst, o) |
| 75 | } |
| 76 | |
| 77 | type task struct { |
| 78 | digest string |
searching dependent graphs…