|
|
Subversion on Mac Leopard
Subversion on Mac Leopard
This is more of a note to myself then a guide.
Mac OS X Lepard 10.5 ships with Subversion installed, so to get it going just do like this.
Run Terminal and enter:
sudo svnadmin create /usr/local/svn
sudo chown -R www /usr/local/svn
sudo chmod -R 777 /usr/local/svn
sudo pico /etc/apache2/other/svn.conf
Copy-paste the following:
LoadModule dav_svn_module libexec/apache2/mod_dav_svn.so
<Location /svn>
DAV svn
SVNPath /usr/local/svn
</Location>
Restart apache by:
sudo apachectl restart
And check if it works by visiting the root repo:
http://localhost/svn
If it does not work, try running the Console.
If everything seems to work add your project to the rep by:
sudo svn import /usr/localhost/svn/proj file:///usr/localhost/src/proj -m 'Added my proj'
This document was created 080223 and updated 090808.
If you enjoyed this page you might want to have a look at this:
Programming,
Applications,
Some Sort of Curriculum Vitae.
|
|
|