2

是否有任何 Eclipse 插件可以根据随时间添加/修改的行显示Subclipse的提交活动?

举个例子,有一个像 GitHub 或 BitBucket 提供的图形可视化效果会非常好。

在此处输入图像描述

4

1 回答 1

1

You really could not do this well from an Eclipse plugin as the information is not readily available. The only way to get information like this is to get the history of the entire repository, and then produce a diff for each revision that you run through diffstats. So realistically, this needs to be done by a backend service on the server that is doing this from a post-commit hook as each change is made.

Here is one tool that can do some of this:

https://code.google.com/p/svnplot/

It can do that initial expensive build of the data. You would probably need to build in some kind of process to keep it maintained as new activity comes in as you would not want to constantly repeat the process from scratch every time you want to see the info.

于 2013-04-19T15:55:10.863 回答