On Thu, Jun 10, 2010 at 10:46:26AM -0500, Thomas Anderson wrote: > Say I've added a bunch of debug code to files in a particular > directory and that I want to now remove all the debug code. I could > search through the file and manually remove it all or I could just re > checkout the directory from SVN and replace the debug directory with > the latest SVN code. Problem is, typing in "svn checkout" requires > you know the URL of the repository / directory you're checking out.
rm -rf bad_directory svn update bad_directory should do the trick. tyler