创建svn分支问题

发布于 2024-10-12 15:16:41 字数 687 浏览 2 评论 0原文

我的 SVN 有问题。

我有一个存储库来提交更改,存储库的 SVN 信息:

[samick]$ svn info file:///home/gumm/panel_repository/
Path: panel_repository
URL: file:///home/gumm/panel_repository
Repository Root: file:///home/gumm/panel_repository
Repository UUID: 4d87f859-4380-0410-8875-df9bb2b63277
Revision: 1200
Node Kind: directory
Last Changed Author: gumm
Last Changed Rev: 1200
Last Changed Date: 2011-01-19 23:40:43 -0800 (Wed, 19 Jan 2011)

当我尝试创建存储库分支时,我得到:

svn cp file:///home/gumm/panel_repository/ file:///home/gumm/branch/

svn: Unable to open an ra_local session to URL
svn: Unable to open repository 'file:///home/gumm'

出了什么问题?

I have problem with SVN.

I have one repository to commit changes, the SVN info of repository:

[samick]$ svn info file:///home/gumm/panel_repository/
Path: panel_repository
URL: file:///home/gumm/panel_repository
Repository Root: file:///home/gumm/panel_repository
Repository UUID: 4d87f859-4380-0410-8875-df9bb2b63277
Revision: 1200
Node Kind: directory
Last Changed Author: gumm
Last Changed Rev: 1200
Last Changed Date: 2011-01-19 23:40:43 -0800 (Wed, 19 Jan 2011)

When i try make branch of reposiory i get:

svn cp file:///home/gumm/panel_repository/ file:///home/gumm/branch/

svn: Unable to open an ra_local session to URL
svn: Unable to open repository 'file:///home/gumm'

What is wrong?

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

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

发布评论

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

评论(1

她如夕阳 2024-10-19 15:16:41

file:///home/gumm/panel_repository 是您的存储库根目录,您只能在存储库内复制,而不能将存储库复制到其他地方(这就是您在此处尝试执行的操作)。

通常,您在 file:///home/gumm/panel_repository 中的结构如下:

branches
tags
trunk

然后将(例如)trunk 复制到 branches/myNewBranch< /代码>

file:///home/gumm/panel_repository is your repository root, you can only copy within the repository, not copy the repository somewhere else (that's what you're trying to do here).

Normally you'd have a structure in file:///home/gumm/panel_repository like:

branches
tags
trunk

And you copy (for example) trunk to branches/myNewBranch

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