subversionで管理しているファイルに自動的にリビジョン番号を明記する方法について
現在subversionでテキストファイルのバージョン管理を行っているのですが、
今手元にあるテキストファイルはどの時点のリビジョンのものか、
一目見ただけでは分かりませんでした。
そのため、テキストファイルの先頭にコメントで
subversionのリビジョンを自動的に記入できれば良いと思ったのですが、
そのような事は可能でしょうか?
例えば、下記のソフトでは、テキストファイルの先頭に
下記のようなコメントが記入してあります。
http://cakephp.jp/
/* SVN FILE: $Id: index.php 7945 2008-12-19 02:16:01Z gwoo $ */
/**
* Requests collector.
*
* This file collects requests if:
* - no mod_rewrite is avilable or .htaccess files are not supported
* -/public is not set as a web root.
*
* PHP versions 4 and 5
*
* CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
* @package cake
* @since CakePHP(tm) v 0.2.9
* @version $Revision: 7945 $
* @modifiedby $LastChangedBy: gwoo $
* @lastmodified $Date: 2008-12-18 18:16:01 -0800 (Thu, 18 Dec 2008) $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
時間が秒単位で明記されている事などから、
上記は自動的に生成しているのかなと思い、
同じような事を実現したいと思いました。
何かご存知の方がいらっしゃいましたら、ご教示の程よろしくお願いします。
お礼
回答、ありがとうございました。