tortoise svn giving me “Redirect cycle detected for URL 'domain/svn'”

前端 未结 8 2139
無奈伤痛
無奈伤痛 2020-12-03 10:59

I want to achieve a svn-root in /var/svn and repositories(projects) in there. I could get it to work in the browser (http://domain/url gives me \"Collection of repositories\

8条回答
  •  余生分开走
    2020-12-03 11:46

    The TortoiseSVN Repository Browser doesn't seem to support browsing of collection of repositories.

    So if you have the repositories:

    /var/svn/repo1
    /var/svn/repo2
    /var/svn/repo3
    

    and the dav_svn.conf

    
      DAV svn
      SVNParentPath /var/svn
      SVNListParentPath on
    
    

    You can browse them with a web browser pointing at http://server/svn.

    With TortoiseSVN you must specify also the name of the repository, e.g.

    http://server/svn/repo1
    http://server/svn/repo2
    http://server/svn/repo3
    

提交回复
热议问题