红联Linux门户
Linux帮助

Git Error: The remote end hung up unexpectedly的解决方法

发布时间:2016-11-01 15:49:21来源:blog.csdn.net/q1302182594作者:OneSea
1、问题描述
在Ubuntu14.04中,使用Git将kernel push到GitHub仓库时,提示错误:
Git Error: The remote end hung up unexpectedly的解决方法
 
2、探索过程
2.1、探索一:修改postBuffer大小
根据参考资料[1][2]的提示,通过下述配置设置postBuffer的大小
git config http.postBuffer 524288000  
结果:依然报错:
Git Error: The remote end hung up unexpectedly的解决方法
2.2、探索二:使用SSH
上述错误是使用HTTPS进行push出现的错误,根据参考资料提示,可以改为使用SSH的方式,详见《通过SSH向GitHub push代码》(http://www.linuxdiyf.com/linux/25640.html)。
 
3、解决方法
改用SSH的方式来push。
 
参考资料
[1]git clone 异常 fatal: The remote end hung up unexpectedly
Git Error: The remote end hung up unexpectedly的解决方法
[2]Git, fatal: The remote end hung up unexpectedly
Git Error: The remote end hung up unexpectedly的解决方法
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25641.html