Installing subversion: how to configure the server?

I am trying to install subversion differently from how it was currently installed. We currently have a networked computer that hosts the SVN repository. We access the repository through Windows file sharing features. Currently, everyone can check as many working copies as possible.

Someone at work told me that we can install a “version of the SVN server” that would better manage who checks the files, and we can also cut the guy associated with the Windows file to connect to SVN.

The problem is that I see only one subversion server load. Looks like this guy told me what you can do by simply changing the configuration, and not another installation. What did this guy say make sense? It seems to me that there is only one version of SVN that we have already installed.

If it seems to me that my question is not clear, perhaps because it is difficult for me to understand what he means.

If anyone has an understanding, I would like to hear about it.

Thanks in advance, JBU

+3
source share
7 answers

, HTTP SVN- Subversion, /, , - , , .

Windows , Visual SVN Server .

+6

svnserve . , Windows:

sc create svnserve binpath= "
    \"C:\Program Files\Subversion\bin\svnserve.exe\"
    --service --root c:\PATH\TO\YOUR\REPOS" displayname= "Subversion" 
    depend= tcpip start= auto

, conf/svnserve.conf , , ( ) . TortoiseSVN.

+2

, Windows samba Linux-, visualsvn- http://www.visualsvn.com/server/, (, ) .

httpd.conf \visualsvn\conf

+1

Apache2 SVN - SVN.

httpd.conf:

LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so

<IfModule dav_module> 
    LoadModule dav_svn_module modules/mod_dav_svn.so
    LoadModule authz_svn_module modules/mod_authz_svn.so
</IfModule>

<Location /svn>
    DAV svn
    SVNListParentPath on
    SVNParentPath "E:\SVN"
    AuthType Basic
    AuthName "Subversion repositories"
    AuthUserFile passwd
    Require valid-user
 </Location>

DLL SVN- /bin Apache

0

BitNami Subversion Installer, . Windows, Mac, Linux. Apache, DAV,

0

Subversion, - . , svnserve ; , -. SVN , , .

Subversion , Subversion . , CVS; CVS RCS , Subversion. .

0

svn1clicksetut

" - Subversion Windows. Svn1ClickSetup , Subversion TortoiseSVN, ".

0

Source: https://habr.com/ru/post/1702215/


All Articles