赞
踩
Repo是google基于git做的一个python脚本,用于管理Android庞大的源码仓库,方便使用,下载repo是标准流程,简单记录如下:
创建一个目录存放repo:
mkdir ~/bin
cd ~/bin
PATH=~/bin:$PATH
下载repo
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x repo
由于网络问题,我们repo init的时候多半会遇到如下提示:
需要替换一个repo源,则添加参数:
repo init -u xxx --repo-url xxx
这里我一般采用清华镜像:https://mirrors.tuna.tsinghua.edu.cn/git/git-repo
另外记录一个网址:git://git.omapzoom.org/git-repo.git
配置username & mail
git config --global user.email “you@example.com”
git config --global user.name “Your Name”
环境配置至此结束;
ssh -p 29418 username@gerrit.com
出现上述如实内容,则说明已经添加权限成功
获取manifest:
repo init -u xxx --repo-url https://mirrors.tuna.tsinghua.edu.cn/git/git-repo
成功后提示:repo has been initialized in /home/code/
同步code
repo sync -j8 -c
一般到这个时候就可以看到code在checkout了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。