Hi Robert, Regarding keyword expansion in SVN ...
An excerpt from: http://yallara.cs.rmit.edu.au/~dleigh/notes/subversion-tips.html ============================================================================= Keyword expansion By default keyword expansion is disabled in subversion - you can explicitly enable it per-file as follows: svn propset svn:keywords "Id LastChangedDate Author" file1.c file2.java... You can enable it by default when adding certain files by setting the following in your .subversion/config: In [miscellany] section: enable-auto-props = yes In [auto-props] section: *.c = svn:keywords="Id LastChangedDate Author" *.cpp = svn:keywords="Id LastChangedDate Author" *.java = svn:keywords="Id LastChangedDate Author" (etc...) ============================================================================= Robyn _______________________________________________ LSST-data mailing list [email protected] http://www.lsstmail.org/mailman/listinfo/lsst-data
