Remove a project from subversion control
About twice a year I need to completely remove a project from svn, I can never find/remember the snippet so I’m posting it on the internets.

About twice a year I need to completely remove a project from svn, I can never find/remember the snippet so I’m posting it on the internets.
RSS feed for comments on this post. TrackBack URL
Powered by WordPress
Wouldn’t it be easier to just export it?
$ svn export file:///tmp/repos project
Comment by Phill Kenoyer — June 7, 2007 @ 11:23 am
I’m not exactly sure why people do it, but I often see piping to xargs when it probably isn’t necessary. Why not just use the -exec functionality of find to do the same thing?
find . -name .svn -exec rm -rf {} \;Comment by Aaron Schaefer — June 7, 2007 @ 2:50 pm
@Aaron: Personally, I like doing the piping because before I run the
rm, I want to make sure that I am deleting the right stuff first.Comment by K. Adam Christensen — June 8, 2007 @ 6:08 am