Quick easy way to remove svn folders, for uploading to a site
| Kilandor |
|
|---|---|
|
First Create a new folder, Inside it copy for example the trunk folder into it.
Create a text file name it something like Remove SVN.bat Edit it and inside put FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q %%G
Save and run it.This will remove any .svn folder Recrusivly down from where it is ran. I use this when I want to upload the trunk to a website :) |
| Dayver |
|
|---|---|
|
Thank you :wink
Pavlo Tkachenko aka Dayver
|