我在存储库中有一个文件夹:
svn/Repo/trunk/Folder
我想将Folder
中的所有文件导出到本地目录:
C:\AnotherFolder
如果我从存储库导出到本地文件夹,它会导出包括父文件夹在内的所有文件,所以我最终得到了结构:
C:\AnotherFolder\Folder\file1
C:\AnotherFolder\Folder\file2
etc
如何在没有父目录的情况下导出?所以我得到了类似的东西:
C:\AnotherFolder\file1
C:\AnotherFolder\file2
答案 0 :(得分:6)
您应该可以使用以下SVN命令执行此操作:
svn export http://.../svn/Repo/trunk/Folder C:\AnotherFolder
这也适用于AnotherFolder的相对路径,如下所示:
svn export http://.../svn/Repo/trunk/Folder AnotherFolder
答案 1 :(得分:0)
如果要导出文件,则命令为
svn export http://.../svn/Repo/trunk/filename C:\ AnotherFolder \ filename
答案 2 :(得分:0)
您可以将./
路径用于运行命令的当前文件夹:
svn export http://.../svn/Repo/trunk/Folder ./