There are 2 things you need to do to use SVN. Install the server and install the client software
This installation assumes Fedora Linux platform
svn 3690/tcp # Subversion svn 3690/udp # Subversion
svnadmin create /home/svn/my-repo
mkdir tmp/cust1/branches
mkdir tmp/cust1/tags
mkdir tmp/cust1/trunk
vi tmp/cust/trunk/foo.c
svn import tmp/project file:///home/svn/repository -m "initial import"
a. svnserve.conf
[general]
# password-db points to a file called "userfile" which contain uid & passwor
password-db = userfile
realm = example realm
# anonymous users can only read the repository
# anon-access = read
# authenticated users can both read and write
auth-access = write
b. edit "userfile"
[users]
harry = foopassword
sally = barpassword
svnserve -d -r /home/svn/stm-repo
svn checkout svn://10.226.200.245/trunk