1

我是 SVN 的新手,我找不到让“提交后”更新特定 txt 文件的解决方案。我有一个 php 项目,位于changelog.txt根文件夹内(与 index.php 位于同一级别)。我想要的是,在每个 之后svn commit,我的changelog.txt将更新一些信息,如下所示:

*** YYYY-MM-DD HH:MM by SVN_USERNAME
SVN_COMMIT_MESSAGE
-------------------------------------------------
*** 2010-09-22 18:31 by marco.belinni
- eshop category navigation - fixed issue with navigation, due overcaching with previous version of seo tool
-------------------------------------------------
*** 2010-09-20 01:03 by jean.laroche
- plg_c16n - fixed canonicalization with SEO Plugin which redirects non www urls to www urls
- mod_login - fixed ie and ff login, hidded input type "remember me" with checked paramater
- the whole frontpage have bolded text because of bolded "READ MORE" button - need to clean it before posting any article
- eshop browse - 10products per page FIXED by clearing cache and purged ALL urls
- eshop orderby - removed useless "SELECT" option in selection field for sorting out the items on page
-------------------------------------------------

我试图找到一些信息,但是有很多网站展示了 C++ 编程的例子。有没有其他只使用 SVN 和 PHP 的解决方案?因为我什至不是 C++ 的新手。

更新

这是一个视觉效果,向您展示我changelog.txt的位置:

- web
 |- framework
 |  + engine
 |  + framework
 - web
   + css
   + images
   | index.php
-->| changelog.txt

谢谢

4

1 回答 1

1

我将假设您的更改日志存储在 SVN 本身中。在这种情况下,就停在那里。提交后,您无法更新存储在 SVN 中的文件,因为它将需要提交,这将触发使其需要提交的更新……您明白了。

您可以愉快地将数据写入一个新文件并使用它,但是只需在 hooks 目录中创建一个名为 post_commit 的文件并在其中放入一些脚本(以及您喜欢的脚本语言)来调用 svn log,将输出通过管道传输到您的 changelog 文件。

于 2012-08-31T12:26:57.093 回答