I have a folder that has a .SVN solution in it.
I want to go throught the entire directory and its subdirectories, and delete the .svn folder.
I have bash installed, so I can use grep if need.
|
I have a folder that has a .SVN solution in it. I want to go throught the entire directory and its subdirectories, and delete the .svn folder. I have bash installed, so I can use grep if need. |
|||
|
|
|
I used this technique:
It worked just fine for me. |
||||
|
|
|
You can combine First test the
This should display a list of all .svn subdirectories in the current working directory (
See |
|||
|
|
Finds all directories of name '.svn' and deletes them recursively. I'd be really cautious of doing this if you don't own the checkout directory and don't understand why these directories are present. Also note roe's answer about |
|||||||
|
|
in bash:
should navigate down through all folders containing an .svn folder and remove it. HOWEVER, you're probably better off using svn to export ( EDIT |
|||||
|