I'm currently learning Git by following the book "Pro Git".
In the book, when discussing different options for git log --since=<date>
, the author said some of the potential options for the <date>
are
git log --since=2.weeks
git log --since="2008-01-15"
git log --since="2 years 1 day 3 minutes"
I was wondering, where can I find a complete list of what I can use as a date format in the --since=<date>
option?
I have looked at the git log manpage on git-scm.com as well as searched the git-scm.com but I can't find it.