我正在尝试将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://...
?