Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a directory with many sub-directories. In each folder there is a subversion folder (.svn). Is there a command in windows that will go through each folder and sub-directory and delete the .svn folder? Or will I have to create a script or do it manually?

Thanks

share|improve this question
1  
If it must not be scripted, I would just search for ".svn" in the root folder, then select all the results, and delete. – JB Nizet Feb 3 '11 at 17:47
You might also be interested in the svn export command (svnbook.red-bean.com/en/1.0/re10.html), which copies a directory to another location, but without all the .svn directories. – JB Nizet Feb 3 '11 at 17:50
@JB Nizet: You should create an answer so people can vote, instead of adding comments. Comments are for commenting on the question, eg when something's unclear – Sander Rijken Feb 3 '11 at 17:52
possible duplicate of [Removing .svn files from all directories ](stackoverflow.com/questions/1301203/…) – Sander Rijken Feb 3 '11 at 17:53
@Sander Rijken: thanks, but since the OP asked for a command, and I didn't have one to propose, I considered my answer as a workaround rather than a real answer. – JB Nizet Feb 3 '11 at 17:57
show 2 more comments

4 Answers

up vote 9 down vote accepted

Use the svn export command to export a Subversion working copy into a new "clean" directory structure that doesn't have the .svn directories.

share|improve this answer
1  
This may not be what he is looking for. I wanted the same thing so I could check in some already modified code into another SVN location. – Bobby Cannon Feb 3 '11 at 17:47
you can do that after an svn export – Sander Rijken Feb 3 '11 at 17:48
This worked for me. I used svn export [RepoPath] [NewPath] – user489041 Feb 3 '11 at 18:49
2  
That command does not take the existing files from your disk, instead it creates a copy from what's currently the most recent version in your repository. You should've used svn export WCPath NewPath – Sander Rijken Feb 4 '11 at 18:03
'svn export' works well if you have access to the original repository. Sometime I receive code dumps that contains .svn directories that point to repositories that I cannot access. In this case, one of the batch file or powershell answers is the way to go. – Kevin Jan 23 at 16:54

Do this in PowerShell.

NOTE: This is recursive so be sure you are in the right directory!

gci -fil '.svn' -r -force | ri -r -force

Here is the rest of my source tree cleanup script.

gci -fil 'bin' -r -force | ri -r -force
gci -fil 'obj' -r -force | ri -r -force
gci -fil '_ReSharper*' -r -force | ri -r -force
gci -fil '*.suo' -r -force | ri -r -force
gci -fil '*.user' -r -force | ri -r -force
share|improve this answer

Make a litte batch file with the following line and execute it from the parent folder under which there are .svn directories.

FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G"

You can also issue the line below straight from the Command Prompt:

FOR /F "tokens=*" %G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%G"
share|improve this answer

If you want to delete all sub folders named .svn in windows then create batch file with this content:

for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *.svn') do (
rd /s /q "%%i"
)

save it in a file del_All_Dot_SVN_Folders.cmd . Run it. Your done.

Thanks to http://www.axelscript.com/2008/03/11/delete-all-svn-files-in-windows/

Remember the above code has .svn whereas the code in the link has only *svn so its better to have the .svn to not accidentally have undesired effect.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.