I've a very large subversion repository, it's about 7 GB in size and holds many many files and directories from different projects.
Now I did some major change to one project structure which is actually a library and I'm using it in quite a few other projects within the same repository. Now the documentations is sparse and I don't know which project actually really used this library as external and I'd like to somehow query the subversion server/repository to return me all directories which have a certain string in the svn:export property so I can adjust them.
Ideally without checking out the whole repository, would turn out problematic due all the branches and tags.
Is that possible somehow in a smart way?
thx
svn propget --recursive
to directories only? I've discovered (I think) that it scans files recursively as well which is a huge problem as some repositories are taking over a day to get this information (over the network) – Frolick