码迷,mamicode.com
首页 > 移动开发 > 详细

AOSP android 源码下载

时间:2018-06-02 11:19:18      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:repo   图片   span   director   chmod   git   name   分支   info   

(1)下载 repo 工具

mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
## 如果上述 URL 不可访问,可以用下面的:
## curl -sSL  https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT |base64 -d > ~/bin/repo
chmod a+x ~/bin/repo

(2)建立工作目录

mkdir WORKING_DIRECTORY
cd WORKING_DIRECTORY

(3)添加 git 用户名

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

(4)初始化仓库

1 repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest
2 ## 如果提示无法连接到 gerrit.googlesource.com,可以编辑 ~/bin/repo,把 REPO_URL 一行替换成下面的:
3 ## REPO_URL = https://gerrit-googlesource.proxy.ustclug.org/git-repo

技术分享图片

技术分享图片

(5)查看库上分支

1 git --git-dir=.repo/manifests/.git/ branch -a

(6)初始化特定分支

repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-8.1.0_r9

(7)下载

repo sync

 

AOSP android 源码下载

标签:repo   图片   span   director   chmod   git   name   分支   info   

原文地址:https://www.cnblogs.com/kele-dad/p/9124559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!