报错git clone error RPC failed curl 56 OpenSSL

git clone 最后出现错误:

	remote: Compressing objects: 100% (1324946/1324946), done.
	error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
	fatal: the remote end hung up unexpectedly
	fatal: early EOF
	fatal: index-pack failed

一般是克隆较大的项目会出现
通过加大本地缓存可以解决这个问题

	git config --global http.postBuffer  524288000

–global属性意味着是全局设置,对所有项目生效,如果不想的话可以不使用这个属性

	git config http.postBuffer  524288000

你可能感兴趣的:(GIT)