Skip to content

Category Archives: Version Control

Configuring Subversion

10-May-07

To modify access permissions and users configuration need to modify the
svnserve.conf file, which is under Repository > Conf > svnserve.conf file.
And uncomment or add following lines
[general]
 
# Anonymous access – Readonly permission
anon-access = read 
# Authenticated access – Write permission permission
auth-access = write
# Username and Password database file.
password-db = passwd
To add users to the repository need to [...]

Subversion – Creating Repository

09-May-07

Creating Repository
Go to the command prompt. Check the svn directory exists in the PATH variable.
svnadmin create C:\MyProject
This will create a new repositiory with name as “MyProject”
For more details on creating repository
SVN Book – Chapter 5
Share/Save

Subversion – Introduction.

07-May-07

Subversion is a new version control system that is a compelling replacement for CVS in the open source community. You can get more details about Subversion from this link
http://subversion.tigris.org/(Subversion Project HomePage)
Share/Save