Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道是否可以使用 phing 将包含文件和子文件夹(joomla 核心下载)的整个文件夹复制到另一个文件夹,但没有 .svn 文件夹。
我已经使用 SVN 下载了 joomla,我想使用 phing 将它导出到我的 joomla dev 文件夹,而无需列出每个文件类型。我的计划是使用它来让我的开发人员从主干更新。
我知道如何排除
但是无论如何都找不到包含所有文件而不列出每个文件,或者试图猜测每个文件类型,以防万一我错过了什么!
建议保罗
看起来phing是仿照蚂蚁的?试试这个:
<copy todir="my/joomla/dev"> <fileset dir="joomla/checkout"> <include>**</include> <exclude>**/.svn/**</exclude> </fileset> </copy>
尝试 svn export,这会将工作副本中的所有文件发送到另一个目录(sans .svn 等)。然后你就可以偷偷溜走了。