2017/11/29

Memo : Svnserve Service for Windows

sc create svnserve binPath= "\"C:\Program Files\subversion\bin\svnserve.exe\" --service --listen-host=0.0.0.0 --root c:\svnrootpath" DisplayName= "Subversion" depend= tcpip
If there would not be the option--listen-host=0.0.0.0, svnserve listens on IPv6 address only. Then, Tortoise SVN failed to connect the service. (IPv6 address [::] was failed...)

No comments:

How to set parameters to debugging program on Visual Studio 2019 with CMake

Solution: MSDN Sometimes the "Debug and Launch Settings for CMake" bottun is disabled. In this case, change to the target view. ...