tags:

views:

57

answers:

1

How do I tell svn that every time, in any directory of any project, it encounters foo and bar it has to completely ignore them?

+7  A: 

Check out ~/.subversion/config's global-ignore option:

### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output.
# global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
Adam Backstrom
There it was! Thanks
kemp