5

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?

egor7
  • 4,678
  • 7
  • 31
  • 55

2 Answers2

3

Look at global-ignores in your configuration file.

The standard location of this file on a *nix system will be ~/.subversion/config.

borrible
  • 17,120
  • 7
  • 53
  • 75
0

SVN only commits the files that you svn add first. If you did not run svn add on an *.o file (and this is usually the case because you would svn add the source files before the project is built) then it will be ignored.

Victor Nicollet
  • 24,361
  • 4
  • 58
  • 89