List git commits to master branch between two dates

瘦欲@ 提交于 2019-12-17 22:38:09

问题


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>

回答1:


$ git log --since "DEC 1 2014" --until "DEC 5 2014" --pretty=format:"%h %an %ad"

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 read about the options here




回答2:


$ git log master --pretty="%h %an %ad" --since=2014-01-01 --until=2014-06-30

Here is everything http://git-scm.com/docs/git-log




回答3:


Have you tried

git whatchanged --since="2 year ago" --until="1 year ago" [--author="NAME_OF_THE_AUTHOR"]

Even git log can be utilized to have this result. There are some advance options available in git log

git log --after="2014-7-1" --before="2014-7-4"

For more details about advance git log you can refer to this link




回答4:


Well, this should do the trick:

git log --oneline since="1/1/2014" --until="30/6/2014"


来源:https://stackoverflow.com/questions/27313309/list-git-commits-to-master-branch-between-two-dates

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!