Sub Version


Warning: This is work in progress. So far I wasn't able to install Subversion+webDAV on that Beige G3.

Currently I am setting up a development server. It's an old Beige G3 266Mhz with 192Mbyte RAM running Mac OS X 10.2.8. My goal is to have a dev server using Apache with WebDAV and Subversion. It will be accessed via Hamachi. Here's a protocoll of what I'm doing to set things up.

Install Developer Tools
Be sure not to install a current version (XCode) but get "December 2002 Mac OS X Developer Tools" from https://connect.apple.com.


Found this on a mailing list. It's the Mac OS X terminal command to remove all .svn-directories from a svn-checkout:

find . -iname '.svn' -print0 | xargs -0 rm -rf

Resources