In the current project I'm working on, someone decided that the binaries would be scanned as part of the source tree. Binary files are located in the directory under the sources themselves:
project/src
project/src/more_src
project/src/bin
As you can imagine, merge conflicts arise because of this. This is very annoying, since I don’t feel that any development machine should write binary files - this should be left on the build server.
I am a command line user of subversion. I would ignore the directory bin, in use svn st, and svn cithese directories passed (even if there are pending changes).
Unfortunately, I cannot use -N (non-recursive) because of the directory more_src.
How can i do this?
source
share