Mohamed Hussain
Mohamed Hussain

Reputation: 7703

GIT remote Fetch Failed (screenshot attached)

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

enter image description here Is anyone experienced this before? Please help me in this. Thanks in advance for any help.

Upvotes: 0

Views: 70

Answers (1)

CodeWizard
CodeWizard

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

Related Questions