View commits for a given directory on a specific date in Github

I want to see all the commits for this "directory" and after the specified date on Github. I read the Github API documentation and the path and since parameters do the job. https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository

However, I cannot view them on Github. The Because option doesn't seem to work on Github. Example: https://github.com/torvalds/linux/commits?path=Documentation&since=2016-04-04T16:00:49Z

Any idea how I can achieve this?

Thank you Leticia

+4
source share
2 answers
  • Command line:

    Use git log - with option.

    git log --since = "2015-12-01"

    / 01 2015 . git

EDIT:

+4

:

git log -- path/ --since="date"

,

 git log -- path/myfile.txt --since="date"

github :

https://github.com/torvalds/linux/commits/master@{date}/Documentation

:

https://github.com/torvalds/linux/commits/master@{2016-04-04T16:00:49Z}/Documentation

: 4/29/2016 enter image description here

+2

All Articles