svn 不提交 .o 文件,但为什么呢?
我发现 svn 默认情况下不会提交我的 .o 文件。我检查了 dir 属性 - 没有找到任何 .o 特定规则。
是否有 svn 默认情况下不提交的文件列表,如 .o?
I found that svn doesn't commit my .o files by default. I've checked dir attributes - no any .o specific rules was found.
Is there a list of files that svn do not commit by default, as .o?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看配置文件中的 global-ignores。
该文件在 *nix 系统上的标准位置为 ~/.subversion/config。
Look at global-ignores in your configuration file.
The standard location of this file on a *nix system will be ~/.subversion/config.
SVN 仅提交您首先
svn add
的文件。如果您没有在*.o
文件上运行svn add
(通常是这种情况,因为您之前会svn add
源文件)项目已构建),那么它将被忽略。SVN only commits the files that you
svn add
first. If you did not runsvn add
on an*.o
file (and this is usually the case because you wouldsvn add
the source files before the project is built) then it will be ignored.