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.
我想运行一个命令来删除我的 macosx 中的所有 .svn 文件。
是否有可能或更好地从目录中删除它们?
我怎样才能做到这一点?
谢谢
您可以使用find递归查找和删除 Subversion 元数据文件夹:
find
find . -name .svn -exec rm -rf '{}' +
svn export 将复制所有没有 .svn 的文件,然后如果您要这样做,您可以删除旧文件夹。