* brian m. carlson wrote: > In general, I wouldn't recommend fetching in parallel, but if you want > to do it anyway, I'd suggest setting `receive.unpackLimit` to 1. That > will result in you keeping the packs you've fetched instead of exploding > them into loose objects, which will help this case. It may not help > enough to solve the problem, though. For fetch it should be `fetch.unpackLimit` (or `transfer.unpackLimit`), as `receive.unpackLimit` configures this limit for receive-pack.