我知道如何在git存储库中检索单个文件的最后修改日期:
git log -1 --format="%ad" -- path/to/file
是否有简单有效的方法对存储库中当前存在的所有文件执行相同的操作?
我知道如何在git存储库中检索单个文件的最后修改日期:
git log -1 --format="%ad" -- path/to/file
是否有简单有效的方法对存储库中当前存在的所有文件执行相同的操作?
Answers:
一个简单的答案是遍历每个文件并显示其修改时间,即:
git ls-tree -r --name-only HEAD | while read filename; do
echo "$(git log -1 --format="%ad" -- $filename) $filename"
done
这将产生如下输出:
Fri Dec 23 19:01:01 2011 +0000 Config
Fri Dec 23 19:01:01 2011 +0000 Makefile
显然,您可以控制它,因为此时它只是一个bash脚本-因此,请随时根据自己的内心需求进行自定义!
git ls-tree -r --name-only HEAD | while read filename; do echo "$(git log -1 --format="%ai" -- $filename) $filename"; done | sort
这种方法也适用于包含空格的文件名:
git ls-files -z | xargs -0 -n1 -I{} -- git log -1 --format="%ai {}" {}
输出示例:
2015-11-03 10:51:16 -0500 .gitignore
2016-03-30 11:50:05 -0400 .htaccess
2015-02-18 12:20:26 -0500 .travis.yml
2016-04-29 09:19:24 +0800 2016-01-13-Atlanta.md
2016-04-29 09:29:10 +0800 2016-03-03-Elmherst.md
2016-04-29 09:41:20 +0800 2016-03-03-Milford.md
2016-04-29 08:15:19 +0800 2016-03-06-Clayton.md
2016-04-29 01:20:01 +0800 2016-03-14-Richmond.md
2016-04-29 09:49:06 +0800 3/8/2016-Clayton.md
2015-08-26 16:19:56 -0400 404.htm
2016-03-31 11:54:19 -0400 _algorithms/acls-bradycardia-algorithm.htm
2015-12-23 17:03:51 -0500 _algorithms/acls-pulseless-arrest-algorithm-asystole.htm
2016-04-11 15:00:42 -0400 _algorithms/acls-pulseless-arrest-algorithm-pea.htm
2016-03-31 11:54:19 -0400 _algorithms/acls-secondary-survey.htm
2016-03-31 11:54:19 -0400 _algorithms/acls-suspected-stroke-algorithm.htm
2016-03-31 11:54:19 -0400 _algorithms/acls-tachycardia-algorithm-stable.htm
...
最后,可以通过修改时间戳对输出进行排序| sort
:
git ls-files -z | xargs -0 -n1 -I{} -- git log -1 --format="%ai {}" {} | sort
这是安德鲁·M。答案的一个小调整。(我无法评论他的回答。)
将第一个$ filename括在双引号中,以支持带有嵌入式空格的文件名。
git ls-tree -r --name-only HEAD | while read filename; do
echo "$(git log -1 --format="%ad" -- "$filename") $filename"
done
样本输出:
Tue Jun 21 11:38:43 2016 -0600 subdir/this is a filename with spaces.txt
我赞赏Andrew的解决方案(基于ls-tree)适用于裸仓库!(这不适用于使用ls文件的解决方案。)
对于使用Windows和PowerShell的我们这些人,Andrew M的答案以及对计算机可读的调整:
git ls-tree -r --name-only HEAD | ForEach-Object { "$(git log -1 --format="%ai" -- "$_")`t$_" }
输出示例:
2019-05-07 12:00:37 -0500 .editorconfig
2016-07-13 14:03:49 -0500 .gitattributes
2019-05-07 12:00:37 -0500 .gitignore
2018-02-03 22:01:17 -0600 .mailmap