我怎样才能让 SmartSVN 忽略文件 .o 和 .obj

How can i make SmartSVN to ignore files .o and .obj

不明白如何让 SmartSVN 忽略不同类型的文件(比如 .o 和 .obj) 我试过项目 -> 默认设置 -> 全局忽略 -> 使用以下模式:

*.o
*.obj
*.d

但它们仍在进行版本控制和展示 有谁知道这是怎么回事?

在 Subversion 中添加 svn:ignore 属性 或添加忽略模式不会影响任何已经版本化的文件。即,忽略模式仅适用于未版本化的数据。您需要取消版本化您希望被 Subversion 忽略的文件。 SVNBook 说:

Subversion's support for ignorable file patterns extends only to the one-time process of adding unversioned files and directories to version control. Once an object is under Subversion's control, the ignore pattern mechanisms no longer apply to it. In other words, don't expect Subversion to avoid committing changes you've made to a versioned file simply because that file's name matches an ignore pattern—Subversion always notices all of its versioned objects.