SVN server visualsvn5.1.4 download and installation (windows environment) (practical operation)

       

        Apache Subversion, often abbreviated to SVN, is an open source version control system. Subversion was developed by CollabNet Inc in 2000 and is now a project of the Apache Software Foundation. It is also part of a rich developer and user community. .

        Compared with RCS and CVS, SVN adopts a branch management system, and its design goal is to replace CVS. Most free version control services on the Internet are based on Subversion.

svn official download address

1. Download from the official website, 64-bit is preferred. The installation environment here is win10 professional version. If it is win7 and xp system, it will most likely not be installed. I personally tested that it cannot be installed under win7.

 2. Double-click the .msi file without thinking and proceed to the next step.

3. Tick the box and take the next step without thinking.

4. Select installation content

This is the default, next step

Option 1 (default): Install all components: server and management tools

Option 2: Install only the management tools

Multi-select box: Add subversion to the environment variable path

5. Set the installation path, warehouse path, port, and backup path

Location refers to the installation path of the server, where the software is installed; Repositories refers to where the document library created in the future will be placed;

Backups refers to where future backups of the file library will be stored.

       It is not recommended to choose these three paths together, as they may become inseparable in the future. Of course, you can choose them together without affecting the use. Next step after selection.

6. Search index configuration

You can also just default here

7. Select the identity authentication method

Option 1: Apply subversion certification

Option 2: Apply Windows authentication

You can also just default here

 8. Click Finish

At this point, the above is that the svn server has been installed, but it still needs to be started before it can be experienced. Next, a new library will be created to test the application.

9. Create a new library

Select repositionries, right-click, New, and select   

 10. Select library type

The first option is to create a new regular FFS repository, and the second option is to create a new VDFS repository. If you need to know the difference between these two repositories, you can search it yourself. I just choose the first regular one.

11. Get a library name

 12.Select the initial content of the library

The first option is "empty repository", which means there is nothing in it and you need to create the directory yourself;

The second option is a "single project repository", which has three directories: trunk, branches, and tags.

 12. Select library permissions

This is to set permissions. The first option is "No one can access", the second option is "All users have read and write permissions", and the third option is "Custom permissions".

13. Allow search indexing

A library is created!

       There is a library, but there is no way to access it because you still need to have an account to authorize the login. Next, you need to create a user/account.

 14. Select users, right-click, select New, Name, Password

 15. The client needs a URL to access the library. Select the library, right-click, and copy its URL first.

Guess you like

Origin blog.csdn.net/weixin_42517271/article/details/130986506