eclipse 使用Git版本控制,removve Push 报错“Error writing request body to server”

报错“Error writing request body to server”

Git默认设置http post的缓存为1M,所以当文件大小超过这个就会失败;

解决方法:
增加http post缓存
在 Window -> Preferences 中找到 Team -> Git -> Configuration 配置界面,第二个Tab页System Settings  点击 “Add Entry…” 按钮来添加一个配置项:

key为: http.postBuffer
value为:524288000


这里同时我网上查到,也可以使用git bash设置:

git config http.postBuffer 524288000
#增加为 500MB

   

你可能感兴趣的:(git学习记录,eclipse使用git)