场景
CentOS7
中使用 git clone https://usr:[email protected]/xxx/xxx.git
时提示 Peer’s Certificate issuer is not recognized
。
解决
执行命令:
git config --global http."sslVerify" false
或者,在 .gitconfig
文件中添加如下配置:
[http]
sslVerify = false
CentOS7
中使用 git clone https://usr:[email protected]/xxx/xxx.git
时提示 Peer’s Certificate issuer is not recognized
。
执行命令:
git config --global http."sslVerify" false
或者,在 .gitconfig
文件中添加如下配置:
[http]
sslVerify = false