Git logで過去3日、あるいは指定日以降のコミットをみる

$ 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 --sinc…