我在Windows机器上安装了git,并将git-svn.pl复制到路径位置。
然后我创建了一个新的svn存储库,它只有一个带有几个文件的主干。
我在svn:// localhost / repo
本地服务svn存储库到目前为止一切顺利。我可以结帐,提交等。
现在我正在尝试使用git-svn克隆此存储库:
git-svn.pl clone svn:// localhost / repo
它只是说:
Initialized empty Git repository in c:/temp/4/vmgit/repo/.git/
W: Filesystem has no item: File not found: revision 5, path '/repo' at /c/WINDOWS/git-svn.pl line 1778
W: Ignoring error from SVN, path probably does not exist: (160013): Filesystem has no item: File not found: revision 5, path '/repo'
W: Do not be alarmed at the above message git-svn is just searching aggressively for old history.
This may take a while on large repositories
Checked through r5
(只有5个版本)。
我也试过了:
git-svn.pl clone svn://localhost/repo/trunk
git-svn.pl clone svn://localhost/repo/
所有人都会犯同样的错误。
我错过了什么?