git访问https的解决方法

it2022-05-05  154

在clone github代码时报错,判断为https的原因,遂找到解决办法。

1.因为ping不通github,所以在/etc/hosts里加上192.30.253.113 github.com

2.解决证书 git config --global http.sslverify true git config --global http.sslCAPath /etc/pki/tls/certs

3.升级nss yum update nss -y

搞定。

原创:https://www.cnblogs.com/harrymore/p/8985058.html

追加: 使用git在clone较大的库时会报错,使用以下命令加大git的配置可解决问题。 git config --global http.postBuffer 524288000


最新回复(0)