如何在 PhpDoc 文档块中使用 NetBeans 和 SVN @version 标记?
我使用 NetBeans 作为我的 php ide,并且我在文档块中看到了 @version 标签,如下所示:
@version $Id someinfo and timestamp
NetBeans 是否有办法在每次提交时自动更新此内容?或者我完全错过了这个标签的要点?
I use NetBeans as my php ide and I have seen @version tags in the docblock that look like this:
@version $Id someinfo and timestamp
Does NetBeans have a way to automatically update this with each commit? Or am I missing the point entirely of this tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对我有用:
转到源文件夹并执行此操作:
这手动设置每个文件的关键字
this worked for me:
go to your source folder and execute this:
this manually sets the keyword for each file
好吧,不,Netbeans 没有办法。但 subversion 确实...
确切的标记是
$Id$
,它对应于 svn 属性svn:keywords=Id
。找到配置文件(在 Linux 上,它通常位于~/.subversion/config
下。在 Windows 上,我在~\Application Data\Subversion\Config
下找到它。找到该文件(如果不存在则创建它),然后添加以下行:如果要将行尾类型设置为 LF (
\n
),则只需将最后一行替换为以下行即可:Well, no, Netbeans does not have a way. But subversion does...
The exact tag is
$Id$
, and it corresponds to the svn propertysvn:keywords=Id
. Find the config file (On linux, it's usually under~/.subversion/config
. On windows I found it under~\Application Data\Subversion\Config
. Find that file (or create it if it doesn't exist) and then add these lines:If you want to set the End Of Line type to LF (
\n
), you can simply replace that last line with this: