Setting up Subversion (SVN) on Bluehost

Posted by & filed under Developer Blog.

I found some instructions from J. Taylor on how to install SVN on Bluehost, but they were a bit out-dated. For one, Subversion is now an Apache project and isn’t found on subversion.tigris.org anymore. You can find the project on http://subversion.apache.org/. Other than that, the instructions are great! mkdir src cd src wget http://subversion.tigris.org/downloads/subversion-1.6.15.tar.bz2 wget… Read more »

How to remove .svn files

Posted by & filed under Developer Blog.

If you are looking for a command line way to remove all .svn folders in a directory tree, the correct answer here is: Don’t. As it turns out, all you need to do is run an SVN Export command and that will create a clean directory tree for you, hastle free. Here’s an example $… Read more »