回购同步时如何显示哪些存储库发生了变化

How to show which repositories changed when repo sync

有什么方法可以列出上次 repo sync 更新了哪些存储库?

这有点沉重,但这是我能想到的唯一方法:

repo manifest -r > before-sync
repo sync
repo manifest -r > after-sync
repo diffmanifests before-sync after-sync

要获取有关 repo diffmanifests 输出的更多信息,请参阅文档:

repo help diffmanifests