Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I am bit late but my answer can help someone. </p> <p>First, login with ssh or putty into server and try below steps </p> <p><strong>1. Create a Repository</strong> </p> <pre><code>svnadmin create /svnrepos </code></pre> <p><strong>2. Create a SVN User</strong> </p> <pre><code>vi /svnrepos/conf/svnserve.conf </code></pre> <p>In that file add these three lines: </p> <pre><code>anon-access = none auth-access = write password-db = passwd </code></pre> <p>Create a password file: </p> <pre><code>vi /svnrepos/conf/passwd </code></pre> <p>In that file add a line for your user: </p> <p>add users in the format : user = password </p> <pre><code>tony = mypassword </code></pre> <p><strong>3. Import Your Project</strong></p> <p>(assuming you’ve put your project files in /projects/myrailsproject) </p> <pre><code>svn import /projects/myrailsproject file:///svnrepos/myrailsproject </code></pre> <p><strong>4. Start the SVN Server as Daemon</strong></p> <pre><code>svnserve -d </code></pre> <p>Done! You should now have a svn server running with one project named myrailsproject. </p> <p>Try checking it out of the repository: </p> <pre><code>svn co svn://192.168.0.2/svnrepos/myyrailsproject </code></pre> <p>Since we set anon-access to none you should be prompted for username and password which you created in the file /svnrepos/conf/passwd. </p> <p><strong><em>These steps were taken from <a href="http://www.tonyspencer.com/2007/03/02/setup-a-subversion-server-in-4-minutes/" rel="nofollow">here</a></em></strong></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload