(ctx context.Context, id string, w io.Writer)
| 499 | } |
| 500 | |
| 501 | func (r *Repository) Apply(ctx context.Context, id string, w io.Writer) error { |
| 502 | envInfo, err := r.Info(ctx, id) |
| 503 | if err != nil { |
| 504 | return err |
| 505 | } |
| 506 | |
| 507 | return RunInteractiveGitCommand(ctx, r.userRepoPath, w, "merge", "--autostash", "--squash", "--", "container-use/"+envInfo.ID) |
| 508 | } |