[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: how to add $Id$ automatically

From: Sohail Somani <sohail_at_taggedtype.net>
Date: 2007-11-20 09:13:00 CET

On Tue, 20 Nov 2007 13:32:57 +0530, p karthik wrote:

> My query is, can we add this $Id$ through any pre/post commit hook
> script? Please let me know in case you need any further information.

No, you should not modify the checkin on the server in a pre-commit hook.
There are ways to do it in a post-commit which involve automatically
checking out, modifying, checking in, but I would have to ask why you
think adding a simple string to a file would break your application.

For example, for C++ files:

for file in `find . -iname "*.cpp"`; do echo "// $Id$" >> ${file}; done;

Would do the job without changing the binaries one bit (for any sensible
interpretation of cpp file!) If you are still paranoid, then just wait
till you release. The $Id$ string in a source file isn't going to make a
big difference.

-- 
Sohail Somani
http://uint32t.blogspot.com
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Nov 20 09:15:26 2007

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.