Previous articlesArticleThis article describes how to build SVN on Windows. A convenient setup method is introduced:
When using the svn client, the svn server is usually external, such as the Google Code server. HoweverProgramDevelopers should have an SVN version control system even if they write a program on their own.CodeFor effective management. Here I will introduce a simple and quick way to build a SVN server in a Windows environment.
Generally, SVN servers are built on Linux and other systems. For example, if Apache + SVN is used for configuration, the svn performance in Linux is very good, but the configuration is cumbersome. If the svn server is only used by itself, you can directly build the svn server in your Windows environment.
Currently, the simple solution is visual SVN server. The SVN server is free of charge and supports Windows NT, 2000, XP and 2003, and is easy to install.
During installation, you can select the svn Protocol over HTTP or HTTPS. the HTTP protocol is faster, while the HTTPS protocol is secure. Both of them can directly access the svn project from a browser.
After the installation is complete, you can see a Microsoft MMS management interface, in which you can easily add configuration items. You can use Windows users or create new users separately. If you have a SVN data, you can import the original SVN data on the interface.
The SVN client is still recommended to use tortoisesvn in windows, which works well together.
From: http://www.williamlong.info/archives/1879.html