代码之家  ›  专栏  ›  技术社区  ›  jkndrkn

使用Git 1.5.1和1.6.5以及Subversion 1.4.2的Git SVN克隆错误

  •  0
  • jkndrkn  · 技术社区  · 14 年前

    我正在尝试将Git集成到我的工作流中。我开始使用它来管理从Subversion存储库克隆的代码的工作副本。

    我试过使用Git 1.5.1和1.6.5。这两个都是从源头构建的。我使用的是官方的Debian软件包进行颠覆。使用两个版本的git会产生如下所示的相同错误。

    $ svn --version
    svn, version 1.4.2 (r22196)
       compiled Aug  6 2009, 16:45:47
    
    Copyright (C) 2000-2006 CollabNet.
    Subversion is open source software, see http://subversion.tigris.org/
    This product includes software developed by CollabNet (http://www.Collab.Net/).
    
    The following repository access (RA) modules are available:
    
    * ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
      - handles 'http' scheme
      - handles 'https' scheme
    * ra_svn : Module for accessing a repository using the svn network protocol.
      - handles 'svn' scheme
    * ra_local : Module for accessing a repository on local disk.
      - handles 'file' scheme
    
    $ git --version
    git version 1.6.5
    
    $ git-svn clone -s file://localhost/home/foo/bar/ .
    perl: /tmp/buildd/subversion-1.4.2dfsg1/subversion/libsvn_subr/path.c:114: svn_path_join: Assertion `is_canonical(base, blen)' failed.
    Aborted
    

    这里有人遇到过类似的问题吗?我以前在谷歌上搜索过这个断言错误,我确实找到了结果,但它们似乎与Gitsvn没有特别的关系。这个错误可能是使用 git-svn clone 在窗体的路径上 file://... 而不是 http://... ?

    1 回复  |  直到 14 年前
        1
  •  2
  •   womble    14 年前

    是的,我不认为你用 localhost 在一个向量网中 file:// 网址。我的Git SVN克隆使用 file:/// 作为URL(如此) file:///var/lib/svn/blah 得到 /var/lib/svn/blah 在本地机器上)。