Eclipse(或任何工具),将所有作者从svn添加到java文件中

时间:2012-10-05 11:30:57

标签: java eclipse svn eclipse-plugin svnkit

是否有自动工具将所有 @author标记从svn添加到所有 java文件? 我找到了添加最后一个提交者的解决方案(like this),但我想添加所有这些。

1 个答案:

答案 0 :(得分:1)

我知道你加粗了自动,但是如果你愿意利用Eclipse中存在的内容,你可以执行以下操作:

  • 打开SVN Repository透视图。
  • 右键单击文件夹或文件,然后左键单击“显示历史记录”。

Show History

  • 按住Ctrl键,左键单击所有修订。
  • 右键单击,然后左键单击“生成更改日志”。
  • 左键单击svn log和clipboard。
  • 打开写字板,然后粘贴。

以下是我的写字板中的前3个条目

r2240 | BOP00082 | 2011-10-26 16:49:53 EDT

Sentry Cobol

Update Subversion with the code changes made by Blue Phoenix on September 26, 2011.
----------------------------------------------------------------------------
r1902 | bop00082 | 2011-03-15 14:07:41 EDT

Sentry Cobol

Load the unexpanded source modules from the Blue Phoenix drop of 18 January 2011.
----------------------------------------------------------------------------
r1211 | bop00082 | 2010-03-17 09:42:57 EDT

Sentry Cobol

Load the unexpanded source modules from the Blue Phoenix drop of 16 March 2010.
----------------------------------------------------------------------------
  • 将更改日志插入文件。

你也可以下载SVNKit,并创建一个Eclipse插件,自动完成我在这个答案中概述的步骤。