如何在Eclipse中查看最近的CVS项目更改?
Eclipse 有没有办法查看项目最近的所有更改? 就像在 SVN 中一样,您只需在文件夹的右键菜单上“查看日志”即可。 在 CVS/Eclipse 中,我只能查看某个文件的历史记录。 我无法看到上次提交中更改了哪些文件。 >.<''
谢谢!
Is there a way in Eclipse to view all recent changes of a project? Like in SVN, you can just go "view log" on a right-click menu of a folder. In CVS/Eclipse, I can only view history on a certain file. I am not able to see what files were changed in the last commit. >.<''
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
这样做对我来说出奇地简单:
Doing this turned out surprisingly simple for me:
您可以根据时间进行差异。 例如,查看过去几天发生了哪些变化。
这在 Eclipse 中相当尴尬,但您可以进入 CVS 存储库视图,单击“日期”,输入“开始”日期,然后导航到要查找更改的项目,选择“比较”并选择“结束”日期。 然后你会看到那段时间发生的变化。
You could do diff based on time. See what changes have been committed during last couple days, for example.
It's rather awkward in Eclipse, but you can go into CVS Repositories view, click "Dates", enter the "from" date, and then navigate to project you want to find changes, choose "Compare With" and choose "to" date. And then you will see changes that happened during that time.
我认为标准 Eclipse 插件不支持它。
有一个 sourceforge 项目试图增强此功能,不确定它是否仍在积极维护。
I don't think it's supported through the standard Eclipse plugin.
There was a sourceforge project that tried to augment this functionality, not sure if it's still actively being maintained.
我在 Eclipse 中没有找到任何工具。 我更喜欢使用 CommitMonitor 来监控项目的 SVN 历史记录(整个项目、分支、标签/ s)。 它在系统托盘中运行并每秒向您发送广告。
I don't find nothing insiede the tool in Eclipse. I prefer to use CommitMonitor to monitor SVN History of project (entire project, branch/s, tag/s). It runs in systemtray and advert you every seconds.
正如此线程或 CVS 常见问题中所述:
“查看上次提交中更改了哪些文件”:
这是否等同于从项目的上下文菜单中选择“
与>另一个分支或版本
”操作?As mentioned in this thread or in the CVS FAQ:
"see what files were changed in the last commit":
Would that not be the equivalent of selecting the "
Compare With>Another Branch or Version
" operation from the context menu of the project ?在我没有可以从 Eclipse 完成这项工作的插件之前,我会使用存储库根目录中的文件历史记录。
如果您在 ROOT 中看不到文件历史记录,则使用创建它
之后,存储库上的所有操作都将以以下形式保存:
注意:所有用户都需要对“历史记录”文件拥有读写权限
Until I don't have plugin that can do the job from Eclipse, I use file history from the ROOT of the repository.
If You not see file history in ROOT then create it with
After that all actions on the repository will be saved in form:
Note:all users need to have rw rights to 'history' file
右键单击项目团队->同步存储库
right click on project team->synchronize repository