我有一个包含许多子模块的元项目。我想在某种 foreach 循环中运行以下行。
cd $subDirectory
"\n\nModule $subDirextory" >> log
git log --pretty=format:"%h%x09%an%x09%ad%x09%s" origin/${Branch}..HEAD >> log
cd ..
这个想法是为元存储库中的每个子模块获取从最后一个分支点到 HEAD 的日志。我该怎么做呢?
我有一个包含许多子模块的元项目。我想在某种 foreach 循环中运行以下行。
cd $subDirectory
"\n\nModule $subDirextory" >> log
git log --pretty=format:"%h%x09%an%x09%ad%x09%s" origin/${Branch}..HEAD >> log
cd ..
这个想法是为元存储库中的每个子模块获取从最后一个分支点到 HEAD 的日志。我该怎么做呢?