解决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/11/19, 23:11:42