I cannot just rm -rf $(find . -name '.svn')
, because I've got some directories in my working copy which are unversioned (on svn:ignore) and at the same time working copies of other svn repositories.
my-repo
|+ directory
||- .svn (to delete)
||- files...
|+ another_directory
||- .svn (to delete)
||- files...
|+ directory_ignored (svn:ignore)
||- .svn (different working copy)
||- more files ...
So I'd like to just tell subversion to remove all .svn directories belonging to this working copy only.
Is this possible?
The directory structure is quite complex, so doing it manually would really suck.
Edit: The working solution finally is:
for i in $(export IFS=$'\n'; grep -l 'https://complete-repo-path/'
find . -name entries|grep .svn | sed 's/ /\ /'
| sed 's/.svn\/entries//'); do echo $i.svn; done