天天看點

subversion設定中發生問題!no repository found

出現這個說明啟動服務(svnserve.exe --daemon )的時候沒有指定版本庫位置的位置

隻要在啟動的服務的時候指定一下就可以了。

1. svnserve -d -r E:/svn/repos1   (d: daemon  r:root)

注意:這個指令後程式會停在那裡作為服務,不要關它

然後使用TortoiseSVN -> Repo-browser 來檢視版本庫。在彈出的 URL 對話框中輸入:

svn://localhost/svn/repos1

通路成功。

最後别忘了建立svn服務,随windows系統的啟動而啟動即可。 sc create svnserve binPath= "D:\Program Files\Subversion\bin\svnserve.exe --service -r E:\svn\repos1" DisplayName= SVNService depend= Tcpip start= auto