Subversion

How to make subversion ignore obj files?

When you run the subversion status command, it will show lot of files that you don't intend to check-in in the repository, like the temporary object files. You can tell subversion to ignore all such files in a particular directory.

svn propset svn:ignore *.o.d DebugUnicode
svn st

This will tell subversion to ignore all the *.o.d files in the DebugUnicode directory.