﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
17	Why are build artifacts not ignored by svn	dneise	somebody	"I remember, that I once tried to add the build artifacts (*Cint.cc, *Cint.hm *Dep.d) created by the Mars build system to the svn:ignore property, but it was not regarded reasonable that time. 

I wanted to inform you, that there is a trivial way to ignore these artifacts without actually touching our svn repository, and thereby not affecting others.

In Ubuntu you should find a file called ~/.subversion/config in your home.
In order to ignore those files scroll down to the [miscellany] section and 
uncomment the 'global-ignores' line and simply append this to that line:
{{{
*Cint.cc *Cint.h *Dep.d
}}}

so in my case it looks like this
{{{
global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo __pycache__
     *.rej *~ #*# .#* .*.swp .DS_Store
     *Cint.cc *Cint.h *Dep.d
}}}

I still get shown all the binaries like (star, merpp, callisto, ...) that are build and wonder weather I should include them also into my global-ignores... not sure yet ... 

I still would rather like to include this into the svn:ignore property so not everybody has to edit his .subversion/config, but I guess it is still considered a no go, right?"	enhancement	new	trivial		component1				
