The default global ignore for Subversion does a good job of keeping build artifacts out of version control. What if I need to distribute a directory of compiled code for my stuff to build?
I don't want to pick up my output (in, say, /target
), and I want to continue ignoring all compiled code for most of my other projects, but just one directory (say, /input
) needs to always track files with a .a
extension.
Is there a property I can set on the /input
directory that will make svn add
pick up new .a
files in there, without altering the global-ignores property?