gpt4 book ai didi

Git log --since= 行为不端

转载 作者:太空狗 更新时间:2023-10-29 14:41:53 25 4
gpt4 key购买 nike

我有一个 git 存储库,其中包含生活在不同时区的不同作者所做的提交。

我想使用 git log 查看自纪元以来的秒数定义的特定时间点以来的历史记录。

根据提供的图像 - 它失败了。可能是什么问题? screen-shot of the command

最佳答案

这里有多个不同的问题,我认为并非所有问题都可以单独使用 Git 前端命令来解决。

首先,每个提交都有两个 日期/时间戳。有一个作者日期 字段和一个提交者日期 字段。要同时查看两者,请使用 git log --format=fuller 例如:

commit 5571d085b3c9c2aa9470a10bcf2b8518d3e4ec99
Merge: bedb914551 5cf8e06474
Author: Junio C Hamano <gitster pobox.com>
AuthorDate: Wed Jul 18 12:20:35 2018 -0700
Commit: Junio C Hamano <gitster pobox.com>
CommitDate: Wed Jul 18 12:20:35 2018 -0700

虽然两者通常完全相同(如本例),但有时它们并非如此:

commit 88a8ecaeaa87a84100c4eb49fb9af7a77977cc1b
Author: Stefan Beller <sbeller google.com>
AuthorDate: Thu Jun 28 19:10:48 2018 -0700
Commit: Junio C Hamano <gitster pobox.com>
CommitDate: Fri Jun 29 09:29:44 2018 -0700

--since--until 操作在提交者日期上运行,但默认情况下显示作者日期。请参阅我对 How to get git to show commits in a specified date range for author date? 的回答另见 Tim Beigeleisen's answer ,它展示了如何使用格式化指令以适合在 awk 或类似工具中使用的特定格式提取特定日期。

剩下的问题就是您已经确定的问题:时区信息很棘手。在这里,请参阅 git: timezone and timestamp format并注意格式化指令 %ai%ci 不遵守 --date=%ad%cd 做。 --date= 指令随着时间的推移而扩展,因此从 Git 2.14 开始,您可以使用 --date=local--date=format- local:...,等等(并且有测试确保一切正常)。请参阅提交 6eced3ec5e5d7fbe61de2791e2627b1acf1246b3特别是。

关于Git log --since=<seconds since epoch> 行为不端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51952684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com