Subversion(SVN) Getting Started
Author
Zhou Renjian
Create@
2006-12-07 13:35
1. Download Subversion and install it
2. Create svn repository by command line (cmd):
D:\>svnadmin create svntest
3. Modify D:\svntest\conf\*
svnserve.conf
[general]
anon-access = read
auth-access = write
password-db = passwd
authz-db = authz
realm = My Elastos Repository
passwd
[users]
yourname = secretpwd
authz
[/]
* = rw
4. Start up svn server:
D:\>svnserve -d -r D:\svntest
5. Download Eclipse and also install Subclipse
6. Create a new repository with url: svn://127.0.0.1/ and enter yourname and secretpwd
7. Create new folder, or check in new project.