I need to update some svn storages. There are a lot of folders I don't need to updated in these storages. All of this folders are named identically, say, FolderToSkip. These folders are heavy weighted and not important for my purposes for now. So, I'd like to update svn storages skiping these FolderToSkip folders.
I can't use svn:ignore, because it is only for files that are not already in the Subversion repository. These folders already is.
I can't use svn update --set-depth exclude FolderToSkip, because it is just for the one specified path and I need all of folders with name FolderToSkip
Is it possible to get, what I want and how it can be done?
EDIT: Folders to skip are placed in different paths of storages. For example,
~/loom/svnstore/foo/FolderToSkip
~/loom/svnstore/bar/trunk/2.1.0/var/FolderToSkip
~/loom/svnstore/a/b/c/d/e/f/g/h/FolderToSkip
...
And command for updating all files look like:
~/loom/svnstore$ svn up
 
     
    