reshma
reshma

Reputation: 651

GIT clone error - remote repository corruption

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

Answers (2)

Amrit Dhungana
Amrit Dhungana

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

Vrushali Pawar
Vrushali Pawar

Reputation: 3803

git config --global pack.window "0"

May this work for you

Upvotes: 1

Related Questions