fatal: early EOF fatal: index-pack failed

后端 未结 30 1585
滥情空心
滥情空心 2020-11-22 10:51

I have googled and found many solutions but none work for me.

I am trying to clone from one machine by connecting to the remote server which is in the LAN network.

30条回答
  •  旧时难觅i
    2020-11-22 11:34

    In my case the problem was none of the git configuration parameters but the fact that my repository had one file exceeding the maximum file size allowed on my system. I was able to check it trying to download a large file and getting an "File Size Limit Exceeded" on Debian.

    After that I edited my /etc/security/limits.conf file adding et the end of it the following lines:

    • hard fsize 1000000
    • soft fsize 1000000

    To actually "apply" the new limit values you need to re-login

提交回复
热议问题