Nov 8

I just had a problem with my svn repository after a couple of plugins I had installed as svn:externals (./script/plugin install -x http://blahblah) were no longer required and I wanted to remove them. Not something I’ve done before, but I found a handy article here, and all you have to do is this:

cd vendor/plugins
svn propedit svn:externals . --editor-cmd vi

Remove the lines that reference the plugins you wish to remove, then save and quit vi (shift-ZZ if you didn’t already know).

Then svn commit and you’re done :)

Leave a Reply