我如何查看过去 24 小时内所有 CVS 签到的比较?
我想每天检查一次 CVS 存储库的所有签入并进行代码 QA。目前,我们正在运行一份报告,告诉我们哪个文件被更改、提交者和签入注释,但这让我依次打开每个文件以检查差异。
我真正想做的是询问在给定日期更改的所有文件,然后选择每个文件以查看更改是什么。
理想情况下,我能够在 Visual Studio 中完成此操作,但如果这能让生活更轻松的话,我也可以访问 Eclipse。或者,事实上,其他工具,如果它能让我更有效率的话......
I want to go through all of the checkins to our CVS repository once a day and do a code QA. At the moment we're running a report that tells us which file was changed, the committer, and the check in comment, but that leaves me opening each file in turn to check what the differences are.
What I really want to do is ask for all files changed on a given date and then select each one to see what the changes were.
Ideally I'd be able to do it within Visual Studio, but I have access to Eclipse if that would make life easier. Or, indeed, other tooling if it will make me more productive...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在最基本的级别上,您可以在命令行中使用 cvs diff 命令:
它将报告存储库中的文件在两个日期之间的差异。您也可以
在 Eclipse 中执行此操作。
Compare With>另一个分支或版本...
(但不知道 Visual Studio 是否适用。)
At the most basic level you can use the
cvs diff
command at the command line:Which will report differences between the files in your repository on the two dates. You can also do
You can also do this in Eclipse.
Compare With> Another Branch or Version...
(Don't know for Visual Studio though.)