In svnserve.conf, you cannot have a space before you set an argument and a variable. It doesn’t find the argument. Open svnserve.conf and delete extra spaces at the beginning of any line.
Archive for the ‘SVN’ Category
Error : svnserve.conf:12: Option expected svnserve.conf
Posted in SVN, tagged error, svn error, svnserve.conf error on February 18, 2009 | 1 Comment »
SVN Commands
Posted in SVN, tagged SVN, svn commands on November 6, 2008 | Leave a Comment »
# Checkout create a working copy of an existing directory.
# Import insert the starting project (a set of files) on an empty repository.
# Export extract a copy of a project in a directory (without SVN information).
# Update try to update your working copy (it doesn’t change the remote repository).
When the server sends changes to your [...]
SVN work cycle
Posted in SVN, tagged basic svn commands, SVN, svn commands, work cycle on November 5, 2008 | Leave a Comment »
The typical work cycle looks like this:
Create repository
svnadmin
Import the project
svn import
Checkout the project
svn checkout
Update your working copy
svn update
Make changes
svn add
svn delete
svn copy
svn move
Examine your changes
svn status
svn diff
svn revert
Merge others’ changes into your working copy
svn update
svn resolved
Commit your changes
svn commit
SVN Setup in Windows XP
Posted in SVN, tagged setup, SVN, svn setup, svn setup in windows, windows xp on October 31, 2008 | 2 Comments »
These are the steps which I followed for SVN setup on Windows XP
1> Install SVN
Download the subversion installer for Windows from: http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
I have installed “Setup-Subversion-1.5.1.en-us” in C:\Program Files\Subversion
2> Install svnserve as a Windows service
I have downloaded SVNService from this location http://www.stanford.edu/%7Ebsuter/subversion-setup-guide/SVNService.zip
Find “SVNService.exe” file and copy it into Subversion’s bin directory C:\Program Files\Subversion\bin
3> [...]