查看指定日期范围内的提交记录

打印出指定日期范围内的所有提交记录。

  • 使用 git log --since=<date-from> --until=<date-to> 查看 <date-from><date-to> 之间的所有提交记录。
  • 你可以只使用 --since=<date-from> 来查看从特定日期开始的所有提交记录,或者只使用 --until=<date-to> 来查看截止到特定日期的所有提交记录。
  • 使用箭头键进行导航,按下 Q 键退出。
git log [--since=<date-from>] [--until=<date-to>]

# 示例
git log --since='2021年4月1日' --until='2021年4月4日'
# commit c191f90c7766ee6d5f24e90b552a6d446f0d02e4
# Author: 30 seconds of code
# Date: Tue Apr 6 11:11:08 2021 +0300
# [...]

git log --since='2周前'
# commit c191f90c7766ee6d5f24e90b552a6d446f0d02e4
# Author: 30 seconds of code
# Date: Tue Apr 6 11:11:08 2021 +0300
# [...]