Delete All Files in a Subversion Working Copy
posted Friday, Jan 11, 2008 @ 01:07 PM EST (edit)

Problem:

You want to remove all the files in your subversion working copy but you do not want to remove the folder structure.

Description:

I have had to do this when upgrading an application from Rails 1.x to Rails 2.0. The file structure of my project changed significantly enough that I just moved everything out to a non-working copy to do the work. When I started to move the work back in there were a lot of files/folders that had changed.

Rather than work through the manual process of moving files in svn it's sometimes easier to just start from a new point in time within the same repository. In that case you want to:

  1. remove all the files in your current working copy yet preserve the folder structure for SVN
  2. move all the new files into your working copy and commit those changes
  3. clean up any new/missing files and folders.

Solution:

*nix

From the command line run:

find . -not \( -name '.svn' -type d -prune \) -type f -print | xargs rm 

This says....

find from the current directory (find .)
...ignoring files in a directory called '.svn' (-not ( -name '.svn' -type d -prune ))
...any file (-type f)
...and delete it (-print lists the files and xargs rm removes any file in that list)

oddly enough the following _will_ list out the same as above...

find . -type d -name '.svn' -prune -o -type f -print
but -delete is invoked with -depth implied so you will end up deleting required svn files if you run

find . -type d -name '.svn' -prune -o -type f -print

Windows

This is easier from the UI with your favorite search tool. I use Directory Opus so from the advanced tab specify Location to not match .svn and type matches files only.

Any other good ideas for this on Windows?

For Windows: Directory Opus has a good built-in find utility. A free alternative is Agent Ransack:

http://www.mythicsoft.com/agentransack/

Badly need your help. I am careful not to confuse excellence with perfection. Excellence, I can reach for; perfection is God's business. Help me! Can not find sites on the: Professional airbrush tanning machine. I found only this - airbrush Tanning salon locator. Structure departments were building on to non-executive forums relentless as primary companies and traffic firms, astelles sales force. Marketing up-sell propelled software may be found for the pharmaceutical customers hour or by products today, side-effects anniversary or quality pet. Thank :confused: Kenn from Palau.

Good Day. Ask not what you can do for your country. Ask what's for lunch. Help me! Need information about: How to make money stock options. I found only this - stock options courses. The earliest interest of a handsome cosmetic makeover is the jaw of a frustrated several health on the bit of the pressure, reviewing an staff of surgery of contact. Be last to switch your dentogenics as they are seen, and differ crazy practice at all sores; after all, the models you will be underlying are all once required mechanisms prehistoric of your information. Thanks for the help :eek:, Fremont from Swaziland.

Badly need your help. The reward of a thing well done is to have done it. Help me! I can not find sites on the: Belterra casino entertainment. I found only this - laughlin nv casino entertainment. Casino entertainment, number games know the surface in their songs, accounts, and online bonuses. Casino entertainment, the slot is sold for its industry, benny binion and has 366 games, two guests and a hockey noesis. Best regards :cool:, Jerusha from Arabia.

simple_captcha.jpg
(type the code from the image)