1.查看最新源码repo仓库
git clone https://aosp.tuna.tsinghua.edu.cn/platform/manifest
cd .\manifest\
2.克隆所有仓库
python sync.py
import xml.dom.minidom
import os
from subprocess import call
# 保存源码路径
rootdir = "C:/Users/wdp/Desktop/source/android-12.0.0_r2"
# git路径
git = "C:/Program Files/Git/bin/git.exe"
dom = xml.dom.minidom.parse("C:/Users/wdp/Desktop/source/manifest/default.xml")
root = dom.documentElement
# 默认下载master分支最新代码
prefix = git + " clone https://aosp.tuna.tsinghua.edu.cn/"
# 只拉去最新一次commit,减小源码体积
# prefix = git + " clone --depth=1 https://aosp.tuna.tsinghua.edu.cn/"
suffix = ".git"
if not os.path.exists(rootdir):
os.mkdir(rootdir)
for node in root.getElementsByTagName("project"):
os.chdir(rootdir)
d = node.getAttribute("path")
last = d.rfind("/")
if last != -1:
d = rootdir + "/" + d[:last]
if not os.path.exists(d):
os.makedirs(d)
os.chdir(d)
cmd = prefix + node.getAttribute("name") + suffix
call(cmd)
3.单独克隆某个仓库
git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Launcher3.git
这篇博客介绍了如何通过Python脚本来批量克隆Android开放源代码项目(AOSP)的仓库。首先,从Tsinghua University的AOSP镜像仓库克隆manifest文件,然后运行Python脚本`sync.py`,利用`git`命令获取所有仓库的最新代码。如果需要,也可以单独克隆特定仓库,如`platform/packages/apps/Launcher3`。
1333

被折叠的 条评论
为什么被折叠?



