- 使用sourceTree拉取代码时报错:SSL certific
- Git专栏5:SourceTree拉取pull代码和推送push
- sourceTree在Mac/Windows下使用克隆clone
- pip CERTIFICATE_VERIFY_FAILED 报错
- Mac 之svn 遇到https地址相关错误
- sourceTree使用ssh拉代码转圈圈问题
- IDEA中使用git报错Permission denied (p
- 【解决】关于MacOS下Python3_SSL_CERTIFIC
- Git 本地连不上远程报错--WARNING: REMOTE H
- SourceTree, 提示password required
报错内容如下:
unable to access 'https://....git/': SSL certificate problem: certificate has expired
certificate has expired 意思就是证书过期
其实就是SSL卡住了你,因此最快的解决方法就是关掉SSL验证。
打开 git bash 输入以下命令 回车 即可
git config --global http.sslVerify false
网友评论