I was looking into Trac, which led me to finally get SVN installed, which led me to futz through the basic steps and finally discover there’s a 1-click installer for Windows after I got it working…
![]()
But the trick is getting it to run as a service under Windows. Turns out the newer versions can be installed as a service. It took a little more futzing to get the invocation right, but here it is, using the built-in SC command to create a service (my repository is in c:\svn-repo):
sc create svn binpath= "C:\svn-win32-1.4.6\bin\svnserve.exe --service -r c:\svn-repo" displayname= "Subversion Repository" depend= Tcpip
The real problem, of course, is that I don’t want all this junk running on my laptop, but that’s another issue.
Post a Comment