In Terminal, cd to the repository directory to be checked into SVN
rm -rf `find . -type d -name build`
This will remove all the build directories in all the sub directories e.g. when trunk contains multiple projects.
本文介绍了一种在Subversion (SVN) 版本控制系统中用于清除所有子目录下构建文件的方法。通过使用终端命令结合find和rm,可以有效地删除指定的build目录及其内容,适用于多个项目的仓库。
In Terminal, cd to the repository directory to be checked into SVN
rm -rf `find . -type d -name build`
This will remove all the build directories in all the sub directories e.g. when trunk contains multiple projects.
1431
4774

被折叠的 条评论
为什么被折叠?