如何获取在某个日期范围内从 svn 更改的文件列表?
我试图从 svn 中提取在一定日期范围内更改的文件列表。
目前我正在使用这样的东西:
svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk
有更好的方法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为我最初以编程方式从 svn 提取数据的方法是最好的方法。
我们要求根据从第一个日期到第二个日期的范围进行差异。我们要求提供汇总选项,以便我们在自己的行上列出每个更改的文件。
I suppose that my original method of programaticaly pulling data from svn is the best approach.
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.
如果您需要经常进行此分析,我建议使用fisheye:链接文本
If you need to do this analysis a lot, I suggest fisheye: link text