Skip to content

Commit

Permalink
Merge pull request #29548 from airbornepony/blobless
Browse files Browse the repository at this point in the history
Add --filter=blob:none to git fetch ops.
  • Loading branch information
k8s-ci-robot authored May 19, 2023
2 parents 52b6029 + 7b74e05 commit bb3c69e
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion prow/pod-utils/clone/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ var (
)

func (g *gitCtx) gitFetch(fetchArgs ...string) retryCommand {
args := []string{"fetch"}
args := []string{"fetch", "--filter=blob:none"}
args = append(args, fetchArgs...)

return retryCommand{
Expand Down
Loading

0 comments on commit bb3c69e

Please sign in to comment.