svn服务

1.创建服务

cmd进入命令提示符下

进入svn安装目录下的bin文件夹目录

键入命令

 sc create svnservice
 binpath= "D:\Subversion\bin\svnserve.exe --service -r D:\svnroot"
 displayname= "SVNService"
 depend= Tcpip
 start= auto

创建了名为"SVNService"的svn自动启动服务

2.删除服务

删除服务很简单,同样是

cmd进入命令提示符下

进入svn安装目录下的bin文件夹目录

键入命令

sc delete SVNService

就删掉了名为"SVNService”的服务

你可能感兴趣的:(SVN,subversion)