I want to exclude a subdirectories by pattern in subversion because the development tool we are using is generating them. Getting the tool to generate the directories elsewhere is not an option. We don't want to edit the global-ignore property in ~/.subversion/config as it is difficult to maintain consistency with this. The directories we are trying to exclude look like this:
rootdir
|-> dir1
|-> dirToExclude
|-> dir2
|-> dirToExclude
I want to exclude dirToExclude in both dir1 and dir2. Can be done using an svn:ignore on rootdir instead of having to add the svn:ignore to both dir1 and dir2?