Below are some quick startup notes for me:
I was root when I did this, yes, I know.
1. cd /
2. svnadmin create svn
3. svn mkdir file:///svn/trunk file:///svn/branches file:///tags -m "creating initial repository layout"
4. Now lets import our project files.
cd /projects
svn import PING file:///svn/trunk -m "Importing my project files"
5. Now after we imported them, lets check them out
6. cd /data
7. svn co file:///svn/trunk PING
8. Now the project files have been checked out to /data/PING
Ok so now we have the files we want, how do we get them up on our apached webserver. Here is the directions I followed:
This is straight from the INSTALL doc, read it below...Additional information can be found here:
http://www.unix-tutorials.com/go.php?id=533
