1. Download and install the SVN server Setup-subversion-1.8.8.msi and client Tortoisesvn-1.8.6.25419-x64-svn-1.8.8.msi (note the version number is the same, and depending on whether the computer is a 32-bit or 64-bit choice).
2. Create a warehouse empty folder D:\repos, and right-click on the Repos folder to select Tortoisesvn-->create repository here
3. Create a folder D:\project the project, and right-click on the SVN Checkout within the project folder and enter File:///D:/repos in the URL of repository, d:\ The. SVN folder is generated in project, and the table name associates the project folder with the Repos warehouse
4. In project, put the source code sources, sources right-tortoisesvn-->add, add sources to the working folder (the SVN managed working folder), Then Tortoisesvn--commit commits to repository.
5. Create the Svnserve service and set it to start automatically: cmd command line input: sc create svnserve binpath= "\" D:/program Files (x86)/subversion/bin/svnserve.exe\ "- -service-r d:\\repos "displayname=" SVN service "depend= tcpip start= Auto
6. Start the svn:cmd command line input: net start Svnserve (if the success description has been configured successfully, if the failure to find the above steps is wrong)
7. Set User name password: D:\repos\conf file (no need to restart SVN after modification can be directly effective)
(1) svnserve.conf Modify, remove the following line comment #:
[General]
Anon-access = None (note change read to none)
auth-access = Write
Password-db = passwd
(2) passwd modification
[Users]
# Harry = Harryssecret
# sally = Sallyssecret
admin = Admin (add Admin user, password also admin)
8. You can perform read and write operations on the client installation TortoiseSVN or subclipse Enter the user name password.
The build of SVN under Windows