I only want a list of files that have been added (not ones that have been modified) since a certain date. Is there an easy way to do this?
Answer: Here's what ended up working for me, thanks guys!
svn log -v -r{2008-10-1}:HEAD svn://path.to.repo/ | grep "^ A" | grep ".java" | sort -u