用于svn存储库子集的git svn clone显示错误消息

时间:2017-09-05 04:03:50

标签: git git-svn

svn存储库是

http://example.com/svn/a/b/c
http://example.com/svn/b/c
http://example.com/svn/c/d/e
http://example.com/svn/d/e/f

我想克隆子集

git svn clone -r HEAD -t http://example.com/svn --include-paths '(a/b/c|b/c|d/e/f)'

它显示以下错误消息:

SVN repository location required as a command-line argument

1 个答案:

答案 0 :(得分:1)

-t开关需要一个参数,用它告诉git-svn哪条路径通向主干。在您的情况下,您说您的主干位于http://example.com/svn目录中,因此没有指定错误消息告诉您的URL。在您的情况下,您可能不希望-t切换。