What goes into the .bzrignore file?

Created by Tim Cook
Keywords:
bzrignore
Last updated by:
Rui Boon

*.pyc
*.pyo
*.o
*.tmp
oship/.installed.cfg
oship/bin/
oship/develop-eggs/
oship/etc/
oship/parts/data/
oship/parts/i18n/
oship/parts/log/
oship/test/
etc/
oship/src/oship.egg-info/
oship/src/oship/startup.py

EXPLANATION:
The *.pyc, *.pyo files are generated by the Python interpreter.

oship/src/oship/startup.py and ... are generated by the grokproject command and contain absolute paths to the files on your file system.

To be expanded...