如何标记 svn 中提交的文件以从导出中排除?

发布于 2024-08-03 08:26:30 字数 185 浏览 7 评论 0原文

我们遇到的问题是,我们的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陪你搞怪i 2024-08-10 08:26:30

无法告诉 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.

爱她像谁 2024-08-10 08:26:30

据我所知,没有导出过滤器之类的东西,但您可以制作一个 postexport 脚本来删除您不需要的文件。这是一个红宝石示例:

#!/usr/bin/env ruby
require 'find'

Find.find(".") do |path| 
  if FileTest.file?(path) && path.match(/\.tmp$/i)
    puts 'removing %s' % path
    FileUtils.remove_file(path)
  end
end

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:

#!/usr/bin/env ruby
require 'find'

Find.find(".") do |path| 
  if FileTest.file?(path) && path.match(/\.tmp$/i)
    puts 'removing %s' % path
    FileUtils.remove_file(path)
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文