diff --git a/components/content-service/pkg/git/git.go b/components/content-service/pkg/git/git.go index 049a138a07f9d8..690e53674e3810 100644 --- a/components/content-service/pkg/git/git.go +++ b/components/content-service/pkg/git/git.go @@ -272,7 +272,9 @@ func (c *Client) Clone(ctx context.Context) (err error) { args = append(args, strings.TrimSpace(key)+"="+strings.TrimSpace(value)) } - args = append(args, "--filter=blob:none") + // TODO(cw): re-introduce this when we have a better story for repo forking + // args = append(args, "--filter=blob:none") + args = append(args, ".") return c.Git(ctx, "clone", args...)