Re: Clean up files that were under source control

2011-03-16 Thread Don Schneider
One related feature I'd like would be the ability to "ignore" all items in a folder. Consider the case that a folder is under version control, and some of the contents should be in version control while others should not be (for example, a script folder for a script that keeps a "pid" file

Re: Clean up files that were under source control

2011-03-15 Thread Dirk Stoop
Careful copying that one, you don't want to make any typos in a script that has "rm -rf" in it. :) One thing to prevent getting those .svn folders in your copied folders is to ‘export’ them rather than copying or moving them. I know it's a little late now, but consider this a tip for the next time

Re: Clean up files that were under source control

2011-03-11 Thread Cue
I assume your not referring to the svn cleanup utility? If not, you'd have to manually remove the SVN files since clients serve the purpose of managing versioned files. Quick terminal command would be: cd /path/to/directory find . -type d -name ".svn" -exec rm -fR {} \; Hope this helps. Cue

Re: Clean up files that were under source control

2011-03-11 Thread Jorde Vorstenbosch
Take it out of subversion control -- Jorde Vorstenbosch On Friday, 11 March 2011 at 13:47, Alex Zavatone wrote: > What do you mean by "clean up"? > > On Mar 11, 2011, at 5:37 AM, Glenno wrote: > > > I would like to know this too. Anyone? > > > > Glen > > > > On Feb 24, 4:07 am, Peter wrote

Re: Clean up files that were under source control

2011-03-11 Thread Alex Zavatone
What do you mean by "clean up"? On Mar 11, 2011, at 5:37 AM, Glenno wrote: > I would like to know this too. Anyone? > > Glen > > On Feb 24, 4:07 am, Peter wrote: >> Hi, >> >> Is there a way to clean up files that were copied using the Finder? Like in >> other version control clients you can

Re: Clean up files that were under source control

2011-03-11 Thread Jorde Vorstenbosch
You would need to use an app to show the hidden files, that way it's possible to remove the svn folder and 'clean it up'. It is however much more easily done from the terminal. -- Jorde Vorstenbosch On Friday, 11 March 2011 at 12:37, Glenno wrote: > I would like to know this too. Anyone? > >

Re: Clean up files that were under source control

2011-03-11 Thread Glenno
I would like to know this too. Anyone? Glen On Feb 24, 4:07 am, Peter wrote: > Hi, > > Is there a way to clean up files that were copied using the Finder? Like in > other version control clients you can "Clean up files" to set them back to > normal files/folders. > > I know there is the "export