下载Android 源代码树的三种方式
Posted 高桐@BILL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载Android 源代码树的三种方式相关的知识,希望对你有一定的参考价值。
一、从Google托管的 Git 代码库下载(需VPN)
mkdir aosp
cd aosp
git config --global user.name Your Name
git config --global user.email you@example.com
repo init -u https://android.googlesource.com/platform/manifest
repo sync -c -j8
注意!代码约250G,编译镜像另外需要约150G存储空间。
二、本地镜像 (需VPN)
首先为服务器的全部内容创建一个本地镜像(需要网络),并从该镜像同步客户端(不需要访问网络)。
注意!本地镜像需要使用存储空间约700G,检出代码需要约250G,编译镜像另外需要约150G存储空间。
2.1 创建镜像
mkdir -p /usr/local/aosp/mirror
cd /usr/local/aosp/mirror
repo init -u https://android.googlesource.com/mirror/manifest --mirror
repo sync
2.2 从镜像同步代码
mkdir -p /usr/local/aosp/master
cd /usr/local/aosp/master
repo init -u /usr/local/aosp/mirror/platform/manifest.git
repo sync
2.3 将客户端与服务器同步
首先将镜像与服务器同步,然后再将客户端与镜像同步:
cd /usr/local/aosp/mirror
repo sync
cd /usr/local/aosp/master
repo sync
三、清华镜像(无需VPN)
参考链接:AOSP | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
wget -c https://mirrors.tuna.tsinghua.edu.cn/aosp-monthly/aosp-latest.tar # 下载初始化包
tar xf aosp-latest.tar
cd AOSP
repo sync # 正常同步一遍即可得到完整目录
# 或 repo sync -l 仅checkout代码
创作打卡挑战赛
赢取流量/现金/CSDN周边激励大奖
以上是关于下载Android 源代码树的三种方式的主要内容,如果未能解决你的问题,请参考以下文章