In SVN, is there a way to set (bugtraq) properties on all directories in a tree without checking the whole tree?
I cannot set properties in the repository directly without setting intercepts. Even if I'm not sure if this will help, you cannot set recursive properties using Tortoise, and I suspect that it would not be easy with the command line client.
There are rare checks, but if I set the depth empty for each directory, then setting the properties recursively will not work, even if I manually check each subdirectory.
I could check the entire repository and use Tortoise to recursively define bugtraq properties in directories (they do not apply to files by default). But this will require me to check the entire repository just for this.
Is there a better way to do this that I am missing?
Edit:
I tried to check the entire repository and change the properties in the root, but the commit violated our commit hook: it is impossible to change the properties in the tags. Without removing the hook, it seems I will need to manually change the properties (on everything except the tags).
source
share