I have a working copy that gets automatically committed into SVN overnight using a script.
I use the SVN command line to do so.
After a frustrating battle wi
You have to call svn add in your script for each unversioned file prior to svn commit—something like this for a shell script:
svn add
svn commit
for file in `svn st | grep '^\?' | awk '{ print $2; }'`; do svn add $file done