$ git log --since='3 days ago'
since以外にも、それ以前のコミットをみるuntilなんてのもあります。
--since=
, --after=
Show commits more recent than a specific date.--until=
, --before=
Show commits older than a specific date.
なお、ここでのdateの構文は上に示すような'days ago'形式の他に
$ git log --since='2015-11-24'
のような記法も可能です。
他には
--date=(relative|local|default|iso|iso-strict|rfc|short|raw)
のように%sのような形式からiso、rfcまであります。
参考もと
- man git-log