创建svn分支问题
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
file:///home/gumm/panel_repository
是您的存储库根目录,您只能在存储库内复制,而不能将存储库复制到其他地方(这就是您在此处尝试执行的操作)。通常,您在
file:///home/gumm/panel_repository
中的结构如下:然后将(例如)
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:And you copy (for example)
trunk
tobranches/myNewBranch