git clone https://github.com/Ameba-AIoT/ameba-rtos.git
Cloning into 'ameba-rtos'...
fatal: unable to access 'https://github.com/Ameba-AIoT/ameba-rtos.git/': SSL certificate problem: unable to get local issuer certificate
如图

致命:无法访问'https://github.com/Ameba-AIoT/ameba-rtos.git/':SSL证书问题:无法获取本地颁发者证书
原因分析
这个问题是由于没有配置信任的服务器HTTPS验证。默认,cURL被设为不信任任何CAs,就是说,它不信任任何服务器验证。
解决方案
只需要执行下面命令就可以解决:
git config --global http.sslVerify false