本文主要是介绍git error:error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
git push时出现如下错误
Counting objects: 59722, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (58835/58835), done.
error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
fatal: The remote end hung up unexpectedly MiB | 32.00 KiB/s
Writing objects: 100% (59722/59722), 157.57 MiB | 6.09 MiB/s, done.
Total 59722 (delta 4636), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date
这是由于git默认缓存大小不足导致的,使用下面的命令增加缓存大小
$ git config --global http.postBuffer 2000000000
这篇关于git error:error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!