Git 的BUG小结

Git 在push的时候出现了:

 

fatal: The remote end hung up unexpectedly

 

在网上找了非常多  发现出现了下面错误提示也可能是同样的问题:

 

error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

在网上查到的解决方法例如以下:

以上发生在push命令中。有可能是push的文件过大导致
解决方法:
windows:
在 .git/config 文件里增加
[http]
postBuffer = 524288000

linux:
git config http.postBuffer 524288000 

 

我依照网上提供的方式攻克了问题:

上图  进入git文件

 

Git 的BUG小结

打开config 文件 在里面填上:

 

Git 的BUG小结

 

就此攻克了

很感激网上分享解决方式的人们

谢谢

相关文章:

  • 2022-02-01
  • 2021-07-18
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
  • 2021-06-23
  • 2022-01-02
猜你喜欢
  • 2021-07-26
  • 2021-06-26
  • 2021-05-15
  • 2021-12-02
  • 2022-12-23
相关资源
相似解决方案