I'm trying to set up Subversion on Ubuntu Linux. It seems to be working, except that when I made one change and tried svn status
, I found about 100 files had been changed, in the .metadata
directory.
My ~/.subversion/config file currently contains the following line:
global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ .*.swp .DS_Store
What do I need to add to ignore the .metadata files?
The directory under consideration is used by Eclipse for Python development using PyDev, if that matters.