SVN数据文件以.svn文件夹存在于源码中的每个文件夹中,xcode没有找到export的方法,所以就用shell脚本进行手动删除
find . -type d -name .svn|xargs rm -rf
把干净的源码打包
tar -czvf filename.tar.gz -C dir .
本文介绍了一种通过Shell脚本来手动删除存在于源码文件夹中的.svn文件的方法,以解决Xcode未提供导出选项的问题,并提供了使用tar命令将清理后的源码进行压缩打包的具体步骤。
SVN数据文件以.svn文件夹存在于源码中的每个文件夹中,xcode没有找到export的方法,所以就用shell脚本进行手动删除
find . -type d -name .svn|xargs rm -rf
把干净的源码打包
tar -czvf filename.tar.gz -C dir .
转载于:https://my.oschina.net/u/566401/blog/110166
3460

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