Use Subversion to make version management

xiaoxiao2021-03-06  68

Use Subversion to make version management

SVN is CVS, VSS similar version management software, usage methods, similar to CVS, have multiple versions such as Linux and Windows.

installation:

Download Subversion in the following URL for installation, this is the main file of the Subversion.

Http://subversion.tigris.org/project_packages.html

If the downloaded file is SVN-

1.1.1

-Setup-2.exe

Download TortoiseSVN in the following URL for installation, this is the client of the Subversion, which combines the operation with the Windows folder and easy to use.

http://tortoisesvn.tigris.org/download.html

If the downloaded file is TortoiseSVN-

1.1.1

-Unicode_svn-1.1.1.msi

Chinese Simplified Language Document is LanguagePack_

1.1.1

_zh_cn.exe

use:

Server:

Set up the repository directory and store the code. Such as: c: / repos

In the installation directory of the Subversion C: / Program Files / Subversion / Bin, run

svnserve.exe -d -r c: / repos

To start the service

Create a subdirectory in C: / Repos, such as Test. In the Test folder, right click, the TortoiseSVN menu will appear, select "Set up the archive", then the Conf sessage directory will appear in the Test directory. Modify the svnserve.conf under the conf directory. Add the following:

[general]

Auth-access = WRITE

Password-db = password.conf

Create a file password.conf in the conf directory, which is the document stored in the user's password, format:

[users]

Username = user password

Note: The username and password are case sensitive.

Start SVNserve with service

Download file from the following address:

http://dark.clansoft.dk/~mbn/svnservice/

Place the file svnservice.exe in the same directory as SVNserve.exe

Run SVNService -Install -D -R C: / REPOS for service installation

Client

Manage the catalog with TortoiseSVN.

On the folder, right-click, the TortoiseSvn menu will appear, select "Exchange", then check out the document from the server. "Archive URL" Enter: SVN: // Host Name / Test, you can check out the document.

VS.NET uses Subversion

Download the installation plugin from the following address:

Http://ankhsvn.tigris.org/servlets/projectdocumentlist?folderid=2955

If the downloaded file is ankhsetup-

0.5.3

.1638.msi

Run VS.NET after installation

Tools -> Ankhsvn -> EXPORT A Repository or Local Directory

You can check the project to your local directory from the version server.

Open the project in the local directory.

Use "Commit" to add a document using "Update" to update the document.

Related Links:

http://subversion.tigris.org/

http://tortoisesvn.tigris.org/

http://ankhsvn.tigris.org/

http://dark.clansoft.dk/~mbn/svnservice/

Http://www.devhood.com/tools/tool_details.aspx?tool_id=491 http://dev.9cbs.net/article/6/6478.shtm

http://www.cnblogs.com/xiaohui/archive/

2004/09/13

/ 42667.aspx

http://www.codeguru.com/forum/showthread.php?t=291893

http://blog.9cbs.net/sunwestern/archive/

2004/11/07

/170676.aspx

Http://www.microsoft.com/china/msdn/library/Enterprisedevelopment/softwareDev/temhmhtooledevshoudn.mspx

转载请注明原文地址:https://www.9cbs.com/read-87018.html

New Post(0)