直接进入正题
在安装好git和python,配置好相关的环境变量之后直接进入repo的获取: 使用右击-以管理员的身份运行
/**
*~/bin的位置指向
*C:\Users\你的用户名\bin
*并且在环境变量配置好
**/
mkdir ~/bin
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+rx ~/bin/repo
上面的curl接口获取不到,可以换一下host:
142.250.190.48 storage.googleapis.com
克隆repo工具集
# 先随便新建源码目录
# clone工具集
git clone https://gerrit.googlesource.com/git-repo
# 一定要改文件夹名
mv git-repo repo
# 在你存放源码目录
# 进行repo初始化,使用的清华的镜像接口
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-11.0.0_r1 --worktree
获取repo工具集会可以换成:
git clone https://gerrit-googlesource.lug.ustc.edu.cn/git-repo
git-repo获取接口引用 关于文章参考整理
|