Reputation: 4477
As a subversion user you'll have a local configuration folder /<userhome>/.subversion/ in your user home. In there is a config file containing, among others, auto-props.
These properties are applied to files that you add to the repository, e.g. by
svn add <file>
Now here's my question (actually two questions):
Upvotes: 0
Views: 870
Reputation: 29715
We do it this way:
We have an pre-commit-hookscript monitoring all possible properties for each file based on file type and we give an errormessage back to the client with an URL where to obtain the current version of the config file.
It is also possible to parse this online config file, so you do not have to maintain your hook script and the standard config file.
Upvotes: 1