如何标记 svn 中提交的文件以从导出中排除?
我们遇到的问题是,我们的 SVN 中有打开的项目文件,例如 *.fla
和 *.psd
。它们位于 Apache Subversion 下(即在 SVN 存储库中),但我们不希望将它们导出。我们希望在没有打开的项目文件的情况下进行干净的导出。
有没有办法以某种方式标记它们以防止它们被导出?
We have the problem that we have the open project files in our SVN like *.fla
and *.psd
. They are under Apache Subversion (i.e. in SVN repository) but we don't want them to be exported. We want a clean export without our open project files.
Is there a way to flag them somehow to prevent them from being exported?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无法告诉 Subversion 从
导出
中排除某些文件,因为它是在(合理的)假设下运行的,即存储库中的所有文件都与项目的构建和使用相关。如果您不希望用户进行
导出
时显示文件,那么它们首先就不应该出现在存储库中。There is no way to tell Subversion to exclude certain files from an
export
because it operates under the (reasonable) assumption that all files in the repository are relevant to the building and usage of the project.If you don’t want files to show up when a user does an
export
, then they shouldn’t be in the repository in the first place.据我所知,没有导出过滤器之类的东西,但您可以制作一个 postexport 脚本来删除您不需要的文件。这是一个红宝石示例:
there is no such thing as export filter to my knowledge, but you can make a postexport script to remove files you dont want. Here is a ruby example: