SVN 时间戳(使用 BBedit/Texmate)
有没有办法自动将时间戳插入到文档中(html/css/ 每次提交都会包含 js/php/pl/txt) 吗?
Is there a way to auto insert a time stamp into a document (html/css/
js/php/pl/txt) with every commit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Subversion 的关键字替换< /a>。首先,您必须在要进行替换的任何文件上设置
svn:keywords
属性:然后在源代码中包含以下内容:
还有其他有用的替换关键字,例如
Id< /code> 其中包括修订、修改日期和进行提交的用户的组合。
You can use Subversion's Keyword Substitution. First you must set the
svn:keywords
property on any files you want the substitution to occur on:Then in your sourcecode, include the following:
There are other useful substitution keywords available such as
Id
which includes a combination of the revision, the modification date, and the user who made the commit.