groovy 在git中获取目录中文件的最后修改日期

uoifb46i  于 2022-11-01  发布在  Git
关注(0)|答案(1)|浏览(219)

我有一个文件夹充满了文件,我想得到的时间戳,最后git更新的每一个文件。
我想在Gradle任务中获得这些。
我用GrGit尝试了以下方法:

def git = org.ajoberstar.grgit.Grgit.open dir:project.rootDir

task showGit() {
    doFirst {
        file( "$project.rootDir/src/main/java/some/folder" ).listFiles().each{ f ->
            git.log( includes:[ 'HEAD' ], paths:[ f.name ] ).each{
                println "$f.name -> Author: $it.author.name - Date: ${it.date.format( 'dd.MM.yyyy HH:mm' )}"
            }
        }
    }
}

但它什么也不打印。
如果我像这样省略paths

task showGit() {
    doFirst {
         git.log( includes:[ 'HEAD' ] ).each{
           println "Author: $it.author.name - Date: ${it.date.format( 'dd.MM.yyyy HH:mm' )}"
        }
    }
}

它打印整个目录的所有提交信息。
如何获得每个文件的时间戳?

vwoqyblh

vwoqyblh1#

事实证明,这是相当容易的。
How to get the last commit date for a bunch of files in Git?的启发,我创建了自己的GrGit任务:

def git = org.ajoberstar.grgit.Grgit.open dir:project.rootDir

task lastGitUpdated() {
    doFirst {
        int base = project.rootDir.toURI().toString().size()

        def dates = file( "$project.rootDir/src/main/java/some/dir" ).listFiles().collect{
            git.log( includes:[ 'HEAD' ], paths:[ it.toURI().toString().substring( base ) ], maxCommits:1 )[ 0 ].date
        }
    }
}

而且它的工作原理就像一个魅力!
唯一令人略感失望的是,在一个有150个文件的目录上的任务需要2分钟才能完成。

相关问题