9

我想在 Eclipse 中用 Subclipse 或 Subversion 填充评论标签@version。CVS 已经自动完成了这项工作,但 Subversion 没有。这将非常有帮助。

我试图用谷歌搜索“@version”,但这似乎是不可能的。

CVS 所做的示例:

<?php
 /* 
 * @author Spankmaster
 * @version $Id: file.php,v 1.47 2009-09-21 09:28:49 sp Exp $
 * @package mysoftware
 */

SVN 示例:

<?php
 /* 
 * @author Spankmaster
 * @version $Id: $ -> stays empty
 * @package mysoftware
 */

请帮忙.....

4

2 回答 2

14

在 svn 中是 $Revision$

/**
* Last changed: $LastChangedDate$
* @author $Author$
* @version $Revision$
*/

您还必须将关键字添加到项目(文件夹和文件)

属性 svn:keywords 设置为 LastChangedDate Author Id Revision HeadURL

于 2010-02-19T10:48:06.443 回答
8

thx to Marco and Davide.

Just to sum it all up for Eclipse Users:

This will change all files, so you will have to do a checkin of the complete project again. So check-in all work before doing that.

I rightclick on the project, select "Team -> set Property"

Property name: Enter "svn:keywords"

Enter a text property: Enter "LastChangedDate Author Id Revision HeadURL"

Check the option "Set property recursively"

Click "OK"

于 2010-02-19T13:52:17.923 回答