自某个日期以来使用 SVN 更改的文件列表 [英] List of files changed since a certain date using SVN

查看:14
本文介绍了自某个日期以来使用 SVN 更改的文件列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以运行哪种 SVN 命令来获取自某个日期以来更改的文件列表?

What kind of SVN command can I run that will get me a list of files changed since a certain date?

现在我拥有它

svn log <url> -r {2010-11-01}:{2011-05-04} > log.txt

这几乎可以工作,但它只显示修订和注释,而不显示文件列表.

That almost work, but it only shows the revisions and comments but not the files list.

推荐答案

添加 --verbose(或 -v)标志,你会得到一个列表所有受影响的路径以及日志消息.如果您想删除消息,请添加 --quiet(或 -q)标志.所以:

Add the --verbose (or -v) flag and you'll get a list of all affected paths as well as the log messages. If you want to get rid of the messages, add the --quiet (or -q) flag. So:

svn log <url> -qv -r {2010-11-01}:{2011-05-04} > log.txt

这篇关于自某个日期以来使用 SVN 更改的文件列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆