How to make SVN ADD ignore binaries

Posted by fuenfundachtzig on Stack Overflow See other posts from Stack Overflow or by fuenfundachtzig
Published on 2010-02-03T10:24:12Z Indexed on 2010/06/02 0:03 UTC
Read the original article Hit count: 309

Filed under:
|
|
|
|

Binaries (under Linux) don't have an extension so I cannot exclude them using patterns. Thus when I use SVN add to add a directory I will get something like

$ svn add recursion_vector/
A         recursion_vector
A         recursion_vector/rec_vec.cxx
A         recursion_vector/rec_vec.h
A  (bin)  recursion_vector/rec_vec

Here rec_vec is the executable I would like to exclude. SVN obviously recognizes it as binary. Now can I tell Subversion to ignore all binary files?

© Stack Overflow or respective owner

Related posts about svn

Related posts about binary