我想下载android源代码。我遵循了以下步骤,
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ mkdir android-source
$ cd android-source
$ repo init -u https://android.googlesource.com/platform/manifest但是得到了错误
**Get https://gerrit.googlesource.com/git-repo
fatal: Unable to find remote helper for 'https'**我使用的是Ubuntu-10.04,我已经安装了所需的所有软件包,并遵循了在here上提到的所有步骤
任何帮助都会很感激,
谢谢,尼拉夫
发布于 2013-05-16 05:14:51
如果你不能让curl工作,你可以使用
wget -O - https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo而不是。
顺便说一句,您可以通过运行以下命令来检查您的curl版本是否支持https
curl -V如果是这样的话,它应该在某个地方打印"https“。
https://stackoverflow.com/questions/15767170
复制相似问题