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?
views:
57answers:
1
+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
2010-02-12 15:04:52
There it was! Thanks
kemp
2010-02-12 15:09:34