如何在cvs中查找一个人的所有提交(文件和评论)
希望获取 cvs 中用户的所有文件列表(提交注释也很好)。
Looking to get a list of all the files (commit comments would be nice too) of a user in cvs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用以下命令列出特定用户的所有提交:
-N
不列出标签。-S
如果未选择修订,则不打印名称/标题。-w[logins]
仅列出指定登录名签入的修订。小心! 开关的顺序很重要。
有关更多选项和帮助,请使用:(
上面的开关列表取自此命令的输出)。
Use the following command to list all commits by a specific user:
-N
Do not list tags.-S
Do not print name/header if no revisions selected.-w[logins]
Only list revisions checked in by specified logins.Watchout! The order of the switches matters.
For more options and help use:
(Listing of switches above taken from this command's output).
第一行查看用户自指定日期以来的所有更改
第二行仅列出最后一次更改,因此每个文件仅获取一次,即使它已更改多次。
first line to view all changes by user since specified date
second line lists only the last change, so you get each file only once, even if it has been changed several times.
审查自 2009 年 1 月 20 日以来所有用户的所有提交
to review all commits by all users since 2009-01-20
这是一个快速的单行代码,它将为您提供每个文件的列表,然后是该用户的更改以及该用户的第一行注释。
输出将如下所示:
这是一个快速而肮脏的衬里,所以 YMMV。
Here's a quick oneliner that will give you a list of every file, followed by changes in that user and the first line of comment from that user.
Output will look like:
This is a quick and dirty one liner, so YMMV.
您还可以使用外部工具,例如 ViewVC,它允许您使用 Web 表单输入查询。 输出在网络浏览器中的格式也很好。
You could also use external tools, such as ViewVC, which lets you input queries using web forms. The output is also formatted nicely in the web browser.