Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I tell svn to ignore certain files anywhere?

Tags:

svn

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?

like image 400
Matteo Riva Avatar asked Jan 23 '23 14:01

Matteo Riva


1 Answers

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
like image 144
Annika Backstrom Avatar answered Jan 25 '23 04:01

Annika Backstrom