Subversion, or SVN, is a versioning control system used to maintain current and historical versions of files. I decided to start using SVN because I do development on more than one computer and SVN will allow me to have one central repository with all of my project files. The server I am using is a standard desktop computer running Fedora Core 10.

 

Install Apache

The first step is to install Apache2 and the WebDAV SVN module. This can be done by running the commands:

# yum install httpd
# yum install mod_dav_svn

Install Subversion

# yum install subversion

Now created create a project repository:

# mkdir /var/svn/repos/
# svnadmin create /var/svn/repos/project1
# chown -R apache:apache /var/svn

Setup Users

Create password file and add user:

# htpasswd -cm /var/svn/svn-auth-file rob

Add user (if password file already... ... read more >>> rcaudill.wordpress.com

Refer to http://www.linux4all.net/installing_subversion_on_fedora_10


arrow
arrow
    全站熱搜

    Frank 發表在 痞客邦 留言(0) 人氣()