I'm trying to get all commits before some date from AOSP (android open source project).
I found that I can do it by git command:
git log --before="2011-12-01"
But it shows me only author date
(date when patch or change was uploaded buy not merged/changed)
Also I found that I can get date which I need by next git
command:
git log --pretty=format:"%cd"
I't will show commit date
.
And the question is:
how can get git log before some commit date
?