在groups定义中,pdk-cw-fs是什么意思?
我在清单条目中注意到了它,如下所示:
<project path="cts" name="platform/cts" groups="cts,pdk-cw-fs,pdk-fs" remote="aosp" />可在此处找到:
https://github.com/LineageOS/android/blob/lineage-16.0/default.xml#L42
发布于 2020-04-23 12:14:41
根据David Pursehouse的帖子:
https://groups.google.com/forum/#!topic/repo-discuss/1GdH35ColgU
“因此,您可以仅使用属于特定组或组集的项目初始化工作区。请参阅repo init命令上的--groups选项。”
https://gerrit.googlesource.com/git-repo/+/stable/subcmds/init.py#148
下面是repo源定义中的描述:
g.add_option('-g', '--groups',
dest='groups', default='default',
help='restrict manifest projects to ones with specified '
'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
metavar='GROUP')https://stackoverflow.com/questions/61378980
复制相似问题