deploy svn onto Linux

第一種方式:svn+apache2 web

http://rbgeek.wordpress.com/2012/05/01/svn-server-on-ubuntu-12-04-lts-with-web-access/ apache


To install SVN server, run this command at the command prompt: ubuntu

sudo apt-get install subversion libapache2-svn apache2

Make the directory where you want to keep the svn repositories and edit the dav_svn.conf file: app

sudo mkdir /svn sudo nano /etc/apache2/mods-enabled/dav_svn.conf

Delete all the data and make it simple like this :-) ssh

<Location /svn>
 DAV svn SVNParentPath /svn
 AuthType Basic AuthName "Subversion Repository"
 AuthUserFile /etc/apache2/dav_svn.passwd
 Require valid-user
 </Location> 

To create a svn user , use the following command: ide

sudo htpasswd -cm /etc/apache2/dav_svn.passwd arbab

We only need to use the -c option for the FIRST TIME, when you create a user, after that you will only use the -m option. wordpress

Move to the folder, where you want to keep your repositories and create your first repository: svn

cd /svn sudo svnadmin create test_repo

Make sure you set the permissions of the /svn directory to apache with the following command: ui

sudo chown -R www-data:www-data /svn

Restart the apache2 service: this

sudo /etc/init.d/apache2 restart

On Windows machine, Right-Click  and select the SVN Checkout, inside the directory where we want to store the working copy (In my case, it’s on desktop).

Enter the repository’s URL and click OK, it will be prompted for a login and password.  Enter the login informationand click OK.

We shall receive a screen that looks like this:

Create some test file inside the checkout repository, Right-Click and Select the SVN Commit:

Enter the comments that describe the purpose of this commit:

It will be prompted for a login and password.  Enter the login information and click OK.

The result of the commit will appear in a dialog window.

Congrats! now we have a working SVN server on Ubuntu 12.04 :-)

第二種方式:svnserve ,第三種方式:svn+ssh

http://odyniec.net/articles/ubuntu-subversion-server/

相關文章
相關標籤/搜索