[Grok-dev] grokproject generating configurations with absolute paths

Vincent Fretin vincent.fretin at gmail.com
Thu Jan 15 02:54:44 EST 2009


Hello,

I'll share my experience.
In my ~/.subversion/config file, I set global-ignores like this:

global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
*.pyc *.pyo .installed.cfg bin var parts downloads develop-eggs
fake-eggs eggs archgenxml.log *.swp *.egg-info *.mo

Instead of doing it globally, you can create a file IGNORE.txt (for
example) with in it:
*.pyc
*.pyo
.installed.cfg
bin
var
parts
downloads
develop-eggs
fake-eggs
eggs
archgenxml.log
*.swp
*.egg-info
*.mo

and set the subversion svn:ignore property at the root of your repository:
svn propset svn:ignore -F IGNORE.txt .
(If I remember well, I didn't test the command)

I excluded *.mo, because I generate them at startup with zope.i18n [compile].

Brandon, maybe you can add a note specific to subversion in the tutorial
-- 
Vincent Fretin


More information about the Grok-dev mailing list