SVN 时间戳(使用 BBedit/Texmate)

发布于 2024-09-12 22:33:16 字数 62 浏览 6 评论 0原文

有没有办法自动将时间戳插入到文档中(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尐偏执 2024-09-19 22:33:16

您可以使用 Subversion 的关键字替换< /a>。首先,您必须在要进行替换的任何文件上设置 svn:keywords 属性:

% svn propset svn:keywords "Date" /path/to/file

然后在源代码中包含以下内容:

$LastChangedDate$

还有其他有用的替换关键字,例如 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:

% svn propset svn:keywords "Date" /path/to/file

Then in your sourcecode, include the following:

$LastChangedDate$

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文