目前下载清华的AOSP代码总出现问题, 有一个可行的方法就是下载最新的月更新tar包:
请参考:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/
wget https://mirrors.tuna.tsinghua.edu.cn/aosp-monthly/aosp-latest.tar
tar xf aosp-latest.tar
repo sync
清华源的打包方式是没法在一开始就指定分支的, 所以需要切换:
在.repo/manifests文件夹下切分支,在该文件下使用
git branch -a
即可看到所有的分支信息,使用
git checkout <分支>
切换到对应的分支即可,切换完后返回工作目录重新repo sync 一遍。