How to remove plugins installed as svn:externals
I love how easy it is to keep up with the latest and greatest of a plugin in Rails: `script/plugin install -x https://some.subversion.server/plugin`.
Unfortunantly, if you then want to remove it, you need to then go and muck around with subversion externals in `/vendor/plugins`. It took me much hunting around and playing with svn proplist and svn propget to figure it out. It turns out to be as simple as just
cd ./vendor/plugins and then svn propedit svn:externals . –editor-cmd vi
and removing the line. Then just commit the changes plugins directory!
The canonical information on properties is available from the [Redbook](http://svnbook.red-bean.com/en/1.0/ch07s03.html)
March 15th, 2007 at 11:23 am
Thanks! I was also hunting on this for over an hour allready
May 3rd, 2007 at 8:39 am
Thanks for putting this tip out there. It saved me many hours of reading documentation.
August 10th, 2007 at 8:57 pm
thanks so much, it’s taken me hours to find this page. It seemed such a simple thing……
April 23rd, 2008 at 6:14 pm
or ./script/plugin remove