Download android source code occur "server certificate verification failed "

来源:互联网 发布:北大青鸟消防编程公式 编辑:程序博客网 时间:2024/04/30 10:08

按照http://source.android.com/source/downloading.html里面的命令下载源码

执行下面的语句就发生"server certificate verification failed "错误

curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
直接加上-k选项

curl -k https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
然后执行:

repo init -u https://android.googlesource.com/platform/manifest
也发生该错误,

vi repo

然后google找了下,在命令行执行:

export GIT_SSL_NO_VERIFY=1

然后就正常了

Done!