The global-ignore can also be entered into the configuration file of the entire Subversion system so that it applies to all users and all repositories.
As an example, I added the following to /etc/subversion/config on my Linux / CentOS system:
[miscellany] global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store ._*
I based this configuration on my default value of ~/.subversion/config for the global-ignores parameter originally commented out by Subversion.
Now all of these name patterns will be ignored for all users.
source share