From a2be17d4bec148f05f9a9e567758e35530316d17 Mon Sep 17 00:00:00 2001 From: Christian Weichel Date: Wed, 11 Aug 2021 14:12:19 +0000 Subject: [PATCH] [content-service] Don't filter blobs during clone --- components/content-service/pkg/git/git.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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...)