如何找到 SVN 存储库 URL?

发布于 2024-12-29 13:16:06 字数 450 浏览 0 评论 0原文

我有点困惑如何找到 SVN URL 来查看我计算机上的副本。

我访问我的网站的方式是:http://dev.website.com/

我在这里设置了 SVN:/home/svn/trunk

我签出了一个复制到这里:/var/www/trunk

Sso http://dev.website.com/ 指向 /var/www/trunk

但我需要在我的计算机上查看主干的副本。我尝试访问 http://dev.website.com/http://svn.dev.website.com/,但它不起作用。

trunk 获取文件的 URL 是什么?我需要在哪里设置该链接?

I am a bit confuses finding the SVN URL to check out a copy on my computer.

The way I get to my website is: http://dev.website.com/

I have set up SVN here: /home/svn/trunk

And I checkout a copy here: /var/www/trunk

Sso http://dev.website.com/ points to /var/www/trunk.

But I need to checkout a copy of the trunk on my computer. And I try to go to http://dev.website.com/ or http://svn.dev.website.com/, but it doesn't work.

What is the URL that gets me the files from the trunk? Where do I need to set that link up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪冰清 2025-01-05 13:16:06

您不能不要“猜测并尝试”,而是在文件 httpd.conf 中找到存储库的位置。

为此,请阅读 Apache 配置,并在其中找到 DAV svn 字符串。位置容器,其中包含此字符串,位置参数将具有路径,用作单个存储库的存储库路径或多存储库的基本路径。

示例

对于主机 http://mayorat.ursinecorner.ru:8088 , 在 SVNParentPath 目录下创建的任何存储库的配置(部分)

<Location /svn/>
  DAV svn

  SVNListParentPath on
  SVNParentPath physical-path

路径将是

mayorat.ursinecorner.ru:8088/svn/Repo-dir-name/

You must not "guess and try", but find the location of your repository in file httpd.conf.

In order to do it, read the Apache configuration, and find the DAV svn string in it. Location container, which has this string, location parameter will have the path, used as repository path in case of a single repository or base-path for multi-repository.

Example

For host http://mayorat.ursinecorner.ru:8088 with configuration (part of)

<Location /svn/>
  DAV svn

  SVNListParentPath on
  SVNParentPath physical-path

path to any repository, created under SVNParentPath directory, will be

mayorat.ursinecorner.ru:8088/svn/Repo-dir-name/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文