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