Linux

SVN 與 file:/// 一起工作,無法通過 svn:// 訪問 svnserve 正在執行

  • January 21, 2017

在 Ubuntu 上,我有 SVN 設置。我創建了一個名為“siteinabox”的儲存庫並導入了文件。在同一台機器上,我可以通過file://

此命令有效:

Input: svn checkout  file:///svn/siteinabox

但是這個命令不起作用(我在同一台機器上試過):

Input:  svn checkout  svn://localhost/siteinabox  
Output: svn: URL 'svn://localhost/siteinabox' doesn't exist

最終我的目標是從遠端機器訪問 repo。目前,它從遠端機器給出相同的錯誤。

我找到了答案:我以前是這樣開始svnserve的:

svnserve -d -r /svn/project

svnserve但是,應該像這樣啟動而不是上面的命令

svnserve -d -r /svn

引用自:https://serverfault.com/questions/254758