subvision
708 ワード
1.インストールサービス側:subvision
2.リポジトリの作成:svnadmin create名
3.サービス開始:svnserve-d-rディレクトリ
4.Windowsサービスへの加入:sc create名binpath="D:Program FilesSubversionbinsvnserve.exe--service-r E:workspacesvnBBS"depend=Tcpip
(注:binpath=後ろにスペースがあります)
5.削除サービス:sc delete名
add to service
delete from service
2.リポジトリの作成:svnadmin create名
3.サービス開始:svnserve-d-rディレクトリ
4.Windowsサービスへの加入:sc create名binpath="D:Program FilesSubversionbinsvnserve.exe--service-r E:workspacesvnBBS"depend=Tcpip
(注:binpath=後ろにスペースがあります)
5.削除サービス:sc delete名
add to service
echo off
echo add to windows services
sc create MySvnService binpath= "D:\Program Files\Subversion\bin\svnserve.exe --service -r E:\workspace\svn\BBS" depend= Tcpip
pause
delete from service
echo off
echo add to windows services
sc delete MySvnService
pause