vote up 0 vote down star

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

flag

2 Answers

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

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|flag
Eww. Using --force on the root of the working directory will automatically add any unversioned files underneath it. – Matthew Scharley Oct 21 at 6:13
Thanks Matthew—another thing learned. =) – igor Oct 21 at 6:15
While your answer is technically correct, it's very overengineered, given the alternatives :) – Matthew Scharley Oct 21 at 6:25

Your Answer

Get an OpenID
or

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