【参考链接】
http://source.android.com/source/index.html
1.安装git-core和curl
apt-get update
apt-get install git-core curl
2.下载repo
mkdir ~/bin
PATH=~/bin:$PATH
curlhttps://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
repo脚本下载以后,默认情况是从google的源下载源代码,可以改成从清华的源,编辑 ~/bin/repo,把
REPO_URL = 'https://gerrit.googlesource.com/git-repo'
换成
REPO_URL = 'https://gerrit-google.tuna.tsinghua.edu.cn/git-repo'
3.建立目录,配置git信息
mkdir android-2.3.3_r1
cd android-2.3.3_r1
git config --global user.name"shadowfaxghh"
git config --global user.email"shadowfaxghh@gmail.com"
初始化仓库
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest-b android-2.3.3_r1
如果上面没有更改过下载源,则使用如下地址
repo init -uhttps://android.googlesource.com/platform/manifest -b android-2.3.3_r1
4.下载代码
repo sync