How do I obtain a list of files that changed from svn over a date range?

心不动则不痛 提交于 2019-12-11 02:11:08

问题


I'm attempting to pull a list of files that changed during a range of dates from svn.

Currently I'm using something like this:

svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk

Is there a better way to do this?


回答1:


I suppose that my original method of programaticaly pulling data from svn is the best approach.

svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk

where we are asking for a diff based on the range from the first date until the second date. We ask for the summize option so we get eached changed file listed on it's own line.




回答2:


If you need to do this analysis a lot, I suggest fisheye: link text



来源:https://stackoverflow.com/questions/1312991/how-do-i-obtain-a-list-of-files-that-changed-from-svn-over-a-date-range

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