How can i get a list of all the git commits done to the master branch between 2014-01-01 and 2014-06-30?
I know git log
will give me roughly this format (repeated for all commits):
commit <hash>
author: <author name>
date: <date>
<comment>
But how can it be limited to selected dates and a one line per commit format?
<hash> <author> <date>
<hash> <author> <date>
This will give the format you want for the commits between dec 1 2014 and dec 5 2014, you can change the dates as you like
If you wish to change the format, you can look at http://git-scm.com/docs/git-log under format:
Well, this should do the trick:
Here is everything http://git-scm.com/docs/git-log
Have you tried
Even
git log
can be utilized to have this result. There are some advance options available ingit log
For more details about advance git log you can refer to this link