On Tue, Feb 15, 2011 at 12:33 PM, Greg Long <subvers...@glong.info> wrote: > Hi, > I am supporting a Subversion repository that has a some interesting > requirements. > > - Log message minimum length. > - Files in release directories must not be changed or deleted. > - Files in template directories must not be copied. They should be > extracted instead.
Put those "templates' in a separate repository, and derive the content of them with "svn:externals" or a build process that exports their content. This will break the ability to "svn copy" them. You you then get things to the template is a separate issue. Personally, I think this is silly: if you can't copy the templates, you can't bring along their history or their Subversion properties, such as EOL format or svn:keywords. But it's your environment..