What Should Go In The Repository?
- All source code needed to generate your product from scratch.
- Generally don't check in compiled code.
- There are exceptions to this rule.
- Third party Java jar files (maybe).
- Code that can only be built with specialized tools.
- Get as close to 'svn checkout $URL foo && cd foo && ./configure && make test' as you can.