ubuntu 使用gitee下载出现问题

目录

文章目录

  • 目录
  • 摘要
  • 1.解决方法

摘要

使用ubuntu 下载gitee目录下面的代码出现下面错误

Cloning into 'ardupilot'...
fatal: unable to access 'https://gitee.com/doveyxia/ardupilot.git/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

1.解决方法

参考下面博客
https://blog.csdn.net/weixin_46439193/article/details/105140587

ubuntu 使用gitee下载出现问题_第1张图片

#终端输入命令
export GIT_SSL_NO_VERIFY=1

或者使用最下面的有效:

git config --global http.sslverify false

你可能感兴趣的:(git学习总结,git,linux,运维)