git: list all files added/modified on a day (or week/month…)

后端 未结 7 1960
情歌与酒
情歌与酒 2020-12-08 00:12

Given a period of time (e.g. a day, a week, a month), is it possible to list all files that were modified or added in this time?

7条回答
  •  一整个雨季
    2020-12-08 00:52

    I use this to get a clean list:

    git whatchanged --since '04/14/2013' --until '05/22/2014' --oneline --name-only --pretty=format: | sort | uniq >> changedlist.txt
    

提交回复
热议问题