将目录结构添加到SVN,不包含文件


47

有没有办法在不添加文件夹中包含的文件的情况下将目录结构添加到SVN存储库?

Answers:



7

如果您想递归执行此操作,也许这对您有用?

find . -type d ! -name '.' ! -path "*.svn*" -print0 | xargs -0 svn add --depth=empty

1
问题是“ svn add”将自动递归并包含目录的内容。您需要使用'svn add -N'代替,我想确保它仅适用于目录,而不适用于其中的任何文件。
James F

哦,对了,正如他所说,将编辑帖子
凯尔·勃兰特

0

派对晚了,但是

svn add --non-recursive

非追索性地工作。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.