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 with Google, I have been unable to work out how to automatically add all unversioned files in the working copy to the repository before the commit.

Does anyone know how I might go about doing this?

Kindness and thanks in advance,

Dan

link|improve this question

72% accept rate
feedback

3 Answers

up vote 17 down vote accepted
svn --force --depth infinity add .
link|improve this answer
Thanks Matthew! +1 ... if I could give you more I would ;) – Daniel Elliott Oct 21 '09 at 6:08
After further testing, it seems --depth isn't necessary, but it can't hurt either. – Matthew Scharley Oct 21 '09 at 6:11
the --force was what I was missing ... muchos gracias! – Daniel Elliott Oct 21 '09 at 6:16
4  
Use the --force Daniel -cough- – Matthew Scharley Oct 21 '09 at 7:23
feedback

Try this one on for size - much more elegant than forcing through an svn add:

$ svn add `svn status|grep '\?'|awk '{print $2}'`
link|improve this answer
+1 for the bash-fu ;) – Daniel Elliott Apr 17 at 23:37
feedback

You have to call svn add in your script for each unversioned file prior to svn commit—something like this for a shell script:

for file in `svn st | grep '^\?' | awk '{ print $2; }'`; do
    svn add $file
done
link|improve this answer
1  
Eww. Using --force on the root of the working directory will automatically add any unversioned files underneath it. – Matthew Scharley Oct 21 '09 at 6:13
Thanks Matthew—another thing learned. =) – igor Oct 21 '09 at 6:15
While your answer is technically correct, it's very overengineered, given the alternatives :) – Matthew Scharley Oct 21 '09 at 6:25
This fails if you have spaces in your filenames. – D'Nabre Jan 8 '11 at 15:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.