How do I obtain a list of files that changed from

2019-07-15 06:00发布

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?

2条回答
放我归山
2楼-- · 2019-07-15 06:52

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.

查看更多
我命由我不由天
3楼-- · 2019-07-15 06:58

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

查看更多
登录 后发表回答