FW(二).Android源码同步到本地

前言:操作环境基于ubuntu系统下
如果需要配置window下的ubuntu虚拟机参考:Windows+vbox+ubuntu

(1).配置repo工具

mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo

(2).建立工作目录:

mkdir WORKING_DIRECTORY
cd WORKING_DIRECTORY

(3).初始化仓库:

repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest

(4).使用tuna的镜像源进行更新

export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'

(5).配置源
如果需要某个特定的 Android 版本(列表):

repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-4.0.1_r1

最后同步源码树:

repo sync

更多参考:清华大学开源镜像

你可能感兴趣的:(FW(二).Android源码同步到本地)