本文主要是介绍git clone时失败提示:Connection to bitbucket.org closed by remote host..00 KiB/s,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
当你在bitbucket上托管一个项目时,此时你想git clone一个.git文件下来时报错并提示:**Connection to bitbucket.org closed by remote host..00 KiB/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
如下图所示:
此时你只需要在终端运行
git config –global http.postBuffer 1048576000该命令即可
详情请点击http://stackoverflow.com/questions/6842687/the-remote-end-hung-up-unexpectedly-while-git-cloning
遇到新问题:
网上找的解决方案:
这篇关于git clone时失败提示:Connection to bitbucket.org closed by remote host..00 KiB/s的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!