我知道 repo 中的提交 ID,我怎么知道它属于哪个 git 项目?

I know a commit ID in a repo, how can I know which git project it belongs to?

我使用 repo forall -c 'git log --since=xxx' 查找最新的提交。我知道提交 ID,但我不知道它属于哪个 git 项目。如何获取给定提交的项目名称?谢谢

您可以使用以下方法提取遥控器:

git remote -v 

并解析结果得到项目名称。
名称是结果的最后一个值url

repo forall -cp 'git log --since=xxx'

-p: show project headers before the output of the specified command