下载Android源码(使用中国科技大学的镜像,速度很快)

1、下载配置git,curl

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

2、使用curl下载repo工具

curl https://storage-googleapis.lug.ustc.edu.cn/git-repo-downloads/repo > ~/bin/repo //bin文件夹需要先创建
打开repo修改 REPO_URL = 'https://gerrit-googlesource.lug.ustc.edu.cn/git-repo'
sudo chmod a+x ~/bin/repo //给repo命令赋予可执行权限

3、初始化Android仓库

repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-8.0.0_r9 //mirrors.ustc.edu.cn中国科技大学的

4、同步代码

repo sync -j8 -c //-c只同步当前分支

你可能感兴趣的:(下载Android源码(使用中国科技大学的镜像,速度很快))