2009-11-14 55 views

回答

5

您不需要指定克隆的根目錄。你可以這樣說:

git svn clone svn://repository/subdirectory_of_app1 app1 
git svn clone svn://repository/subdirectory_of_app2 app2 
... 

如果你有樹幹/分支機構/標籤的文件夾中的每個應用程序的文件夾,您還可以添加其他參數:

git svn clone svn://repository/subdirectory_of_app1 -T trunk -t tags -b branches app1 
... 
+0

這也爲我工作很好,你也可以將你的git提交同步到svn倉庫。 – jdehaan