repo管理的manifest总库,可以查git仓库有哪些
https://android.googlesource.com/platform/manifest
国内镜像
git://mirrors.ustc.edu.cn/aosp/platform/manifest
https://aosp.tuna.tsinghua.edu.cn/platform/manifest
分支名查询地址
https://source.android.com/setup/start/build-numbers#source-code-tags-and-builds
变换方法
https://android.googlesource.com/platform/frameworks/base
直接一步到位,命令简单,容易中途失败
git clone -b android-8.0.0_r46 https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/base
多步法,git协议头速度快,fetch断了可以断点续传
mkdir aosp
cd aosp
mkdir frameworks\base
cd frameworks\base
git init
git remote add origin git://mirrors.ustc.edu.cn/aosp/platform/frameworks/base
git fetch origin android-8.0.0_r46
git checkout -b b8.0.0_r46 FETCH_HEAD
网友评论