Tears published on 2005-10-27 0:20:00
ArticleContent1_ArticleContent1_lblcontent> Install Eclipse SVN Plugin
SVN Server SVN Client Reference
SVN Server
Subversion is the enhanced version of CVS, in addition to the current CVS function, there are more powerful features. It is like integrated WebDAV and version control for directory. Here is younger on Windows Installing SVN Server and uses Eclipse SVN Plugin as a client. Only the SVN: // connected here, other about file: // or http: // Please turn over the reference.
Source can be grasped from the official website of the Subversion or Binary. The server of the Windows board here is actually very similar, and the path is different. Create a new repository after grabbing, such as D: / SvnHome Execute:
Svnadmin Create D: / svnhome
It will produce many files like CVS, modify conf / svnserve.conf, and read and write only three: Read, Write, None. Anon-access is anonymous access, Auth-Access is through authenticated user permissions. Password-dB is a password file. E.g:
[general]
Auth-access = WRITE
Password-db = passwd
Realm = my first repository
The above example is to read and write the repository by the authenticated user, the file stored in the password is called Passwd. The format of the Passwd is as follows, not to encode:
[users]
User = passwd
Jared = passwd
Enter SVNServe -d to start SVN daemon.
SVN Client
Here is the SVN PLUGIN of Eclipse, called subclipse, official website in: http://subclipse.tigris.org/ He also provides Update Site http://subclipse.tigris.org/update. In the Eclipse menu, choose Help-> Software Updates-> Find and Install-> Search for New Features To Install -> New Remote Site. The URL enters the just http://subclipse.tigris.org/Update. Just install it.
There will be many new Views and more SVN Repository Exploring in Perspective after installation. Press Right click in SVN Repository -> Repository Location. In the case of just example, the URL is SVN: // localhost / svnhome, the account is Jared, the password is Passwd. As shown below:
Use SVN to press Right click in Project -> Share Project -> SVN -> The rest of the rest of the repository is very similar to CVS.
references
Subversion Book Translation
By Jared Liang Zhezhen