Subversion 和 CVS 中添加自动内容的标签怎么称呼?
诸如 $log$
和 $version$
之类的东西会在签入文件时添加数据。 我有兴趣查看其他人以及他们可以提供哪些信息,但除非我知道他们叫什么,否则我无法获得太多信息。
Things like $log$
and $version$
which add data upon check-in to the file. I'm interested in seeing the other ones and what information they can provide, but I can't get much info unless I know what they are called.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这些是关键字替换。 SVNBook 1.8 的链接在这里: http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.keywords.html。
Subversion 的内置关键字有:
关键字区分大小写,记得用 $ 将它们括起来。
These are Keyword substitutions. The link to SVNBook 1.8 is here: http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.keywords.html.
Subversion's built-in keywords are:
The keywords are case sensitive, and remember to surround them with $.
在 SVN 中,这些简称为“属性”。 您可以在 SVN 书中阅读有关它们的信息:
http:// svnbook.red-bean.com/en/1.8/svn.advanced.props.html
呃,那么,它们被称为属性还是关键字? 我懂了。 在 SVN 中,您可以将任意元数据(称为“属性”)与版本化文件关联起来; 您可以设置的一些属性是在文件本身中设置关键字替换。
In SVN these are simply called "properties". You can read about them in the SVN book:
http://svnbook.red-bean.com/en/1.8/svn.advanced.props.html
Err, so, are they called properties or keywords? Oh, I see. In SVN you can associate arbitrary metadata, called "properties", with versioned files; some of the properties you can set are to set up keyword substitution in the files themselves.
Subversion 和 CVS 都将它们称为
关键字
。在此处查看 SVN 手册(向下滚动到svn:keywords)或此处CVS。
Both Subversion and CVS call them
Keywords
.Have a look in the SVN manual here (scroll down to svn:keywords) or here for CVS.