error: RPC failed; result=35, HTTP code = 0

问题

error: RPC failed; result=35, HTTP code = 0_第1张图片
error: RPC failed; result=35, HTTP code = 0_第2张图片
error: RPC failed; result=35, HTTP code = 0_第3张图片

解决

[root@docker software]# git clone https://github.com/happyfish100/libfastcommon.git --depth 1
正克隆到 'libfastcommon'...
error: RPC failed; result=35, HTTP code = 0
fatal: The remote end hung up unexpectedly
[root@docker software]# git config --global http.postBuffer 30M
[root@docker software]# git clone https://github.com/happyfish100/libfastcommon.git --depth 1
正克隆到 'libfastcommon'...
fatal: unable to access 'https://github.com/happyfish100/libfastcommon.git/': Failed connect to github.com:443; Connection refused
[root@docker software]# git config --global --unset http.proxy
[root@docker software]# git config --global --unset https.proxy
[root@docker software]# git clone https://github.com/happyfish100/libfastcommon.git --depth 1
正克隆到 'libfastcommon'...
remote: Enumerating objects: 170, done.
remote: Counting objects: 100% (170/170), done.
remote: Compressing objects: 100% (161/161), done.
remote: Total 170 (delta 18), reused 38 (delta 3), pack-reused 0
接收对象中: 100% (170/170), 304.43 KiB | 0 bytes/s, done.
处理 delta 中: 100% (18/18), done.
[root@docker software]# 
[root@docker software]# git clone https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1
正克隆到 'fastdfs-nginx-module'...
error: RPC failed; result=7, HTTP code = 0
fatal: The remote end hung up unexpectedly
[root@docker software]# git config --global http.postBuffer 30M
[root@docker software]# git config --global --unset http.proxy
[root@docker software]# git config --global --unset https.proxy
[root@docker software]# git clone https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1
正克隆到 'fastdfs-nginx-module'...
fatal: unable to access 'https://github.com/happyfish100/fastdfs-nginx-module.git/': Failed connect to github.com:443; Connection refused
[root@docker software]# git config --global --unset http.proxy
[root@docker software]# git config --global --unset https.proxy
[root@docker software]# git clone https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1
正克隆到 'fastdfs-nginx-module'...
fatal: unable to access 'https://github.com/happyfish100/fastdfs-nginx-module.git/': TCP connection reset by peer
[root@docker software]# git clone git://github.com/happyfish100/fastdfs-nginx-module.git --depth 1
正克隆到 'fastdfs-nginx-module'...
fatal: unable to connect to github.com:
github.com[0: 20.205.243.166]: errno=????

[root@docker software]# git clone https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1
正克隆到 'fastdfs-nginx-module'...
remote: Enumerating objects: 11, done.
remote: Counting objects: 100% (11/11), done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 11 (delta 0), reused 4 (delta 0), pack-reused 0
Unpacking objects: 100% (11/11), done.
C:\Users\ss\Desktop>git clone https://github.com/happyfish100/libfastcommon.git --depth 1
Cloning into 'libfastcommon'...
fatal: unable to access 'https://github.com/happyfish100/libfastcommon.git/': OpenSSL SSL_read: Connection was reset, errno 10054

C:\Users\ss\Desktop>git config --global http.sslVerify "false"

C:\Users\ss\Desktop>git clone https://github.com/happyfish100/libfastcommon.git --depth 1
Cloning into 'libfastcommon'...
remote: Enumerating objects: 170, done.
remote: Counting objects: 100% (170/170), done.
remote: Compressing objects: 100% (161/161), done.
remote: Total 170 (delta 18), reused 31 (delta 3), pack-reused 0
Receiving objects: 100% (170/170), 305.56 KiB | 1015.00 KiB/s, done.
Resolving deltas: 100% (18/18), done.

你可能感兴趣的:(坑坑坑,rpc,git,github)