Reputation: 7703
The fetch was working fine before, now when I fetch from the remote GIT repository i got this following error (please refer screenshot below). even i give "y", i got the same issue
Is anyone experienced this before? Please help me in this. Thanks in advance for any help.
Upvotes: 0
Views: 70
Reputation: 142352
Looks like your pack file is corrupted.
Pack file is the "git database" where git store all its binary content. In your case it looks like its "broken" for some reason.
First of all execute git gc --aggressive
and then verify that the repo is OK with git fsck
Upvotes: 1