Reputation: 651
While cloning a git repo, got error as below
remote: Counting objects: 32924, done.
remote: aborting due to possible repository corruption on the remote side.
fatal: protocol error: bad pack header
Upvotes: 0
Views: 1941
Reputation: 4485
git config --global pack.windowMemory "100m"
git config --global pack.SizeLimit "100m"
git config --global pack.threads "1"
This may help you
Upvotes: 0