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

Android L下载

时间:2014-11-06 13:02:43      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:android   源代码   网络   branch   服务器   

Android L千呼万唤终于出来了,那么我们先下载下来一睹为快,那么怎么去拿到最新的L的分支
那按照傻瓜步骤总结下(Linux Ubuntu)
1.获取repo文件
(1).curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
(2).chmod a+x ~/bin/repo
(3).export PATH=~/bin:$PATH



curl 是linux下面用命令发起网络请求的工具,拿到repo文件找到位置直接加入到系统PATH中


2.利用repo获取获取源代码
(1).mkdir src && cd src
(2).repo init -u https://android.googlesource.com/platform/manifest
(3).repo sync

上面代码获取的是master代码


如果想单独获取某个分支的代码
(1).mkdir src && cd src
(2).repo init -u https://android.googlesource.com/platform/manifest -b android-5.0.0_r2
(3).repo sync



如果已经有android仓库但是还不是最新的,想切换到AndroidL分支分支
(1).cd .repo/manfiests && git branch -a | cut -d / -f 3
android-4.4.4_r2.0.1
android-4.4_r1
android-4.4_r1.0.1
android-4.4_r1.1
android-4.4_r1.1.0.1
android-4.4_r1.2
android-4.4_r1.2.0.1
android-4.4w_r1
android-5.0.0_r1
android-5.0.0_r2

(2).根据上面列表的选取android-5.0.0_r2 
repo init -b android-5.0.0_r2
(3). repo sync
(4).全部切换到android-5.0.0_r2分支
repo start android-5.0.0_r2 --all
(5). repo branches
*  android-5.0.0_r2          | in all projects
(6).cd external/jsmn && git branch
* android-5.0.0_r2


3.如何搭建本地仓库方便周围的人一块使用
在从服务器获取代码创建本地仓库
(1).mkdir -p ~/aosp/mirror
(2).cd ~/aosp/mirror
(3).repo init -u https://android.googlesource.com/mirror/manifest --mirror
(4).repo sync



从本地mirror获取代码
(1). mkdir -p ~/aosp/master
(2). cd ~/aosp/master
(3). repo init -u /home/username/aosp/mirror/platform/manifest.git
(4). repo sync



同步本地mirror以及本地代码仓库
(1).cd ~/aosp/mirror
(2).repo sync
(3).cd ~/aosp/master
(4).repo sync




联系方式:
lihui40319@sina.com
QQ:390012381
转载请注明出处:http://blog.csdn.net/lihui130135

Android L下载

标签:android   源代码   网络   branch   服务器   

原文地址:http://blog.csdn.net/lihui130135/article/details/40858885

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