windows下创建svn服务进程

创建svn服务进程

管理员模式进入cmd窗口

执行如下命令

sc create svnserve binpath= "\"D:\Subversion\bin\svnserve.exe\" --service -r D:\SvnRepo" start= auto displayname= "SVN Server" depend= Tcpip

启动服务

net start svnserve

停止服务

net stop svnserve

删除服务

sc delete svnserve

你可能感兴趣的:(windows下创建svn服务进程)