Removing a Project from Subversion
Posted: September 6th, 2009 | Author: César Naranjo | Filed under: Uncategorized | 1 Comment »Whenever i have had to remove (uncheckout) a project from subversion control I use the following command. I assume there is a better way or more correct way. I would suggest you first run the find command within the back-ticks to make sure it is listing the correct files.
rm -Rf `find . | grep "\.svn$"`
Hi there,
I personally do prefer the following command:
git rm fileBest,
ludwig