To get commits after a particular date. I can do this:
git log <ref> --since=<date> --pretty=format:%ci
This seems to list commits based on author date. How do I get commits after a particular date based on commit time ? I can parse the output of above cmd to get what I desire, however I was wondering if there is a better way to do this.