解决git clone报错Peer’s Certificate has expired的问题
以往在学习一些github上的开源项目时,都是直接复制了项目的地址,然后在主机上git clone一下即可,然而最近发现总是报错,报错内容如下:
[root@localhost mnt]$git clone https://github.com/Meituan-Dianping/SQLAdvisor.git
Cloning into 'SQLAdvisor'...
fatal: unable to access 'https://github.com/Meituan-Dianping/SQLAdvisor.git/': Peer's Certificate has expired.
1
2
3
2
3
这个时候解决办法有两种。
其一:可以在github处通过下载zip包的方式进行下载。
其二:将刚刚连接中的https改为git即可正常下载。
[root@localhost mnt]$git clone git://github.com/Meituan-Dianping/SQLAdvisor.git
Cloning into 'SQLAdvisor'...
remote: Counting objects: 1460, done.
remote: Total 1460 (delta 0), reused 0 (delta 0), pack-reused 1460
Receiving objects: 100% (1460/1460), 19.92 MiB | 48.00 KiB/s, done.
Resolving deltas: 100% (367/367), done.
1
2
3
4
5
6
2
3
4
5
6
上次更新: 2024/02/28, 13:00:35