赞
踩
使用lsb_release -a查看ubuntu版本信息
sudo apt-get install git
git config --global user.email "你的电子邮件地址"
git config --global user.name "你的名字"
sudo apt-get install curl
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage-googleapis.lug.ustc.edu.cn/git-repo-downloads/repo > ~/bin/repo
export REPO_URL='https://mirrors.ustc.edu.cn/aosp/git-repo.git/'
chmod a+x ~/bin/repo
/home/ubuntu/terry/android/android_source/android-7.0
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-6.0.0_r4
执行上述命令的时候,可能会出现以下错误提示:
这是由于国内无法访问google的资源,此时我们需要使用国内的镜像资源。
1、修改~/.bashrc,添加以下内容
export REPO_URL=‘https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/’
vim ~/.bashrc
2、执行source ~/.bashrc,使修改生效
source ~/.bashrc
重新执行:repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-6.0.0_r4
repo sync
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。