下载 repo 工具
mkdir android7
cd android7
curl https://storage.googleapis.com/git-repo-downloads/repo > repo
chmod a+x repo
注:这样设置的环境变量 PATH 是临时,这样正好。bin 文件可以建在源码文件夹的同级目录下
初始化repo
初始化仓库:
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest
如果提示无法连接到 gerrit.googlesource.com,可以编辑 ~/bin/repo,把 REPO_URL 一行替换成下面的:
REPO_URL = 'https://gerrit-google.tuna.tsinghua.edu.cn/git-repo'
如果需要某个特定的 Android 版本(列表):
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-7.1.2_r6
同步源码树(以后只需执行这条命令来同步):
repo sync