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