Git - 如何在给定日期获得第一个提交sha1

时间:2014-02-28 22:18:03

标签: git

我希望在给定日期00:00:01之后的第一个sha1,或者当天没有提交:在该日期00:00:01之前的最新提交号。

我只想要将(已合并到)trunk(即主分支)的结果。

1 个答案:

答案 0 :(得分:2)

git rev-list -n1 --before="2014/2/27" master

我在这里发现了这个命令:How can I get the diff between all the commits that occurred between two dates with Git?

原来我想看到两个日期之间的差异,这个命令是前进路上的垫脚石,在上一个链接中找到了答案。