我正在使用repo来同步我的本地android源代码。我已按照Android源代码网站上的说明进行操作:http://source.android.com/source/downloading.html
当我尝试做repo init时:
repo init -u http://android.googlesource.com/platform/manifest
我收到以下错误:
fatal: Cannot get http://gerrit.googlesource.com/git-repo/clone.bundle
fatal: error unknown url type: https
我在google上关注了多个帖子并修改了我的repo脚本,并在REPO_URL中将https更改为http,但我仍然遇到同样的错误。
我还需要做什么?
请帮忙。
马库斯
答案 0 :(得分:4)
我已经回答了我自己的问题。
自从我上次进行回购同步以来,我已经清除了HTTP_PROXY和HTTPS_PROXY变量。
export HTTP_PROXY=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>
export HTTPS_PROXY=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>
为我的公司设置运行此操作可解决此问题。
马库斯