Subversion installation instructions

Source: Internet
Author: User
Tags tortoisesvn
Use the SVNService Service
1) Upload the svnservice.exe file to the bin directory of the subversion installation.
2. Run the SVNService-d-r "version library directory" command in cmd"
3. Enable "service" to start.

How to quickly create a Subversion server and use it in projects is a major concern for everyone. Compared with CVS, Subversion has more options and is easier, several commands can be used to create a server environment. An animation tutorial is provided here.

This article is the fastest tutorial using Subversion. It helps you establish a set of available server environments in the shortest time, and can be applied to actual projects with just a slight adjustment.

This tutorial is divided into the following sections, not only the Quick Start, but also some advanced functions. To make it simple, the tutorial is used in windows, in order to facilitate the use of resources for limited projects, there is no big difference in UNIX environments.

1. Software Download
2. server and client Installation
3. Create a version Library (Repository)
4. Configure users and permissions
5. Run the independent server
6. initialize the Import
7. Basic client operations

1. Software Download

* Download the Subversion server program.

Download the binary installation file from the official website, download the Binary Package, find Windows NT, 2000, XP and 2003, and select "this directory ", so we can see a lot of download content, currently can be planted svn-1.2.3-setup.exe.

* Download the Subversion Windows client TortoiseSVN.

TortoiseSVN is a tool that extends Windows Shell and can be seen as a plug-in for Windows resource manager. After installation, Windows can identify the working directory of Subversion.
The Official website is TortoiseSVN. The Download method is similar to that of the svn server. On the Download page, select Official version for Win2k/XP or higher, then select the current highest stable version of the Installation File TortoiseSVN-1.2.4.4479-svn-1.2.3.msi on the download page of sourceforge.

2. server and client Installation

* Install the server and run svn-1.2.3-setup.exe directly. Follow the prompts to install svn-1.2.3-setup.exe. In this way, we have a server running environment.
* Install TortoiseSVN, also directly run the TortoiseSVN-1.2.4.4479-svn-1.2.3.msi according to the prompts to install, but after the completion of the last will prompt whether to restart, in fact, restart is just to make svn work copy in windows special style effective, it has nothing to do with all the actual functions. In order to immediately see the good results, restart the machine.

3. Create a version Library (Repository)

To run the Subversion server, you must first create a version Library (Repository), which can be seen as a database for storing data on the server. After the Subversion server is installed, you can run it directly, for example:

Svnadmin create E: \ svndemo \ repository

A version library is created under the directory E: \ svndemo \ repository.

We can also use TortoiseSVN to perform this step graphically:

Right-click the directory E: \ svndemo \ repository and choose TortoiseSVN> Create Repository here... ", then you can select the version library mode. Here you can use the default mode, and then create a series of directories and files.

4. Configure users and permissions

Go to the E: \ svndemo \ repository \ conf directory and modify svnserve. conf:

# [General]
# Password-db = passwd

Changed:

[General]
Password-db = passwd

Modify the passwd file in the same directory and remove the following three lines of comment:

# [Users]
# Harry = harryssecret
# Sally = sallyssecret

Finally changed:

[Users]
Harry = harryssecret
Sally = sallyssecret

5. Run the independent server

Run the following command in any directory:

Svnserve-d-r E: \ svndemo \ repository

Our server program has started.

6. initialize the Import

Go to the project root directory we want to import. In this example, E: \ svndemo \ initproject. the directory contains a readme.txt file:

1. Right click-> TortoiseSVN-> Import...
2. Enter "svn: // localhost/trunk" in the URL of repository"
3. OK

After that, the directory remains unchanged. If no error is reported, all the data has been imported to the version library we just defined.

7. Basic client operations

Extract the version library to a working copy:

Go to any empty directory, in this example, E: \ svndemo \ wc1, right-click-> Checkout, enter svn: // localhost/trunk in URL of repository, in this way, we get a copy of work.

Make changes in the work copy and submit:

Open readme.txt, modify it, and right-click Commit... to submit the modification to the version library. We can run it.

View the modifications:

Right-click readme.txt-> TortoiseSVN-> Show Log, so that we can see all the submissions to this file. Right-click on version 1 and choose Compare with working copy. We can Compare the differences between the working copy file and Version 1.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.