Feeds:
Posts
Comments

Archive for the ‘SVN’ Category

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.

Read Full Post »

SVN Commands

# 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 [...]

Read Full Post »

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 

Read Full Post »

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> [...]

Read Full Post »