Git push fails with “fatal: early EOF” when PUSHing but only on one file

前端 未结 3 481
名媛妹妹
名媛妹妹 2020-12-16 15:43

When I try adding textures and text files to my repo it all works, but when I try adding a .blend file I get this error. I\'ve tried a bunch of things I found here and on go

3条回答
  •  醉酒成梦
    2020-12-16 15:56

    It's possible that you are overflowing the postbuffer.

    The following command fixes the symptom for me:

    git config http.postBuffer 524288000
    

    See this related issue: https://stackoverflow.com/a/3605544/193785

提交回复
热议问题