【发布时间】:2017-08-30 03:28:11
【问题描述】:
我想镜像 AOSP 存储库,所以我做了以下操作
mkdir ~/bin
curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
export http_proxy=http://xx.x.x.x:808/
export https_proxy=$http_proxy
~/bin/repo init -u https://android.googlesource.com/mirror/manifest --mirror
~/bin/repo sync -j6
在下载 60GB 之前一切正常,然后出现以下错误
致命:无法访问“https://android.googlesource.com/platform/prebuilts/clang/linux-x86/mips/3.3/”:代理连接后跟 269 字节的不透明数据。数据被忽略(已知错误 #39)
就在开始此下载之前,我尝试镜像 android-4.4.2_r1 分支,该分支又从谷歌下载了 50GB
我确定我的代理服务器正在运行。是谷歌阻止了我还是什么原因导致我如何解决这个问题。
非常感谢任何帮助
【问题讨论】:
标签: android git android-source repo