过滤日志

git log --after '3 days ago'

具体日期也适用:

git log --after 2016-05-01

与接受日期参数的其他命令和标志一样,允许的日期格式由 GNU 日期支持(高度灵活)。

--after 的别名是 --since

对于反过来也存在标志:--before--until

你还可以通过 author 过滤日志。例如

git log --author=author