如何更改git log提交的日志日期格式

时间:2019-08-23 03:57:04

标签: git github bitbucket git-bash

是否可以通过git log命令本身将git日志数据格式从“ 2019-08-22 06:38:34 +0000”更改为“ 20190822063834”,或者是否有其他替代方法很好

git log  --pretty=format:"%ci" --decorate=full

2019-08-22 06:38:34 +0000
2019-08-22 06:38:34 +0000  
2019-08-22 06:38:33 +0000
2019-08-22 06:38:33 +0000
2019-08-22 06:38:32 +0000
2019-08-22 06:38:26 +0000

git log  --pretty=format:"%ci" --decorate=full

20190822063834
20190822063834
20190822063833
20190822063833
20190822063832
20190822063826

1 个答案:

答案 0 :(得分:1)

您可以尝试使用自定义日期格式,例如shown here

git log --date=format:'%Y%m%d%H%M%S' --pretty=format:"%cd" --decorate=full

请注意,我use %cd遵循--date=选项,而不是%ci(类似于ISO 8601的格式)。