【发布时间】:2019-12-15 07:01:09
【问题描述】:
如何获取 2014 年 1 月 1 日至 2014 年 6 月 30 日期间对主分支完成的所有 git 提交的列表?
我知道git log 会给我大致的这种格式(对所有提交重复):
commit <hash>
author: <author name>
date: <date>
<comment>
但如何将其限制为选定日期和每个提交格式一行?
<hash> <author> <date>
<hash> <author> <date>
【问题讨论】: