Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a good way to automatically 'svn add' all unversioned files in a working copy to my SVN repository.

I have a live server that can create a few files that should be under source control. I would like to have a short script that I can run to automatically add these, instead of going through and adding them one at a time.

My server is running Windows Server 2003 so a Unix solution won't work.

share|improve this question
1  
possible duplicate of How to use "svn add" recursively in Windows console? – Saul Oct 13 '11 at 18:11

12 Answers

up vote 36 down vote accepted

This is not that difficult to to in cmd:

svn status

will list all unversioned files with a ? in front. So

svn status | findstr /r "^\?"

will find all those lines. You can then tokenize this by wrapping it into a for command:

for /f "usebackq tokens=2*" %i in (`svn status ^| findstr /r "^\?"`) do svn add "%i %j"

(Note that the tokens option here causes two tokens, %i and %j to be created, hence the slightly weird svn add statement in the end.)

If you use this in a batch file you need to double the %:

for /f "usebackq tokens=2*" %%i in (`svn status ^| findstr /r "^\?"`) do svn add "%%i %%j"
share|improve this answer
Wow - very nice. Guess you'll learn something new every day. :-) – mlarsen Jul 2 '09 at 8:47
+1 very nice, where did you learn to use those arcane commands? – Sam Saffron Jul 2 '09 at 11:46
Well, for is more or less the all-in-one tool for anything loopy in batch and the rest is more or less pretty standard stuff. I do some stuff in batches which other might consider painful even to look at but sometimes it's fun. Maybe a similar thing what drives people to write makefiles or Java :). But many of those things are pretty well explained in the help files and then you just know how to use thm after havin used them a few dozen times. – Јοеу Jul 2 '09 at 11:55
3  
svn add * appears to add Ignored files, which is not a good thing IMO. – Jakobud Aug 16 '11 at 16:33
3  
"svn add *" is not working anymore in SVN 1.7 however the answer provide by Ronan: "svn add --force * --auto-props --parents --depth infinity -q" seems to wok in all versions. The for method should also be working but does not take into account ignore'd files. – Cohen Nov 23 '11 at 10:15
show 10 more comments

svn add --force * --auto-props --parents --depth infinity -q

share|improve this answer
5  
A shame that this answer is so hidden at the bottom. It works great. Would you mind explaining it a bit? – shredding Apr 27 '12 at 12:56
3  
Great tip. Much better than using svn status. "svn add --force" seems to be sufficient. – Name Oct 29 '12 at 15:49

This is a different question to mine but there is an answer there that belongs on this question:

svn status | grep '?' | sed 's/^.* /svn add /' | bash
share|improve this answer
5  
This uses UNIX tools (grep, sed, bash) which the OP said he didn't have. – Naaff Jul 1 '09 at 23:55
2  
also you could probably dig up sed and grep on windows if you really wanted. – Sam Saffron Jul 2 '09 at 5:13
Sorry for that upvote on the cygwin comment, wasn't intentional (and I can't undo it). In fact I think cygwin is as ugly as you can get on Windows. You can still use findstr instead of grep which will work at least since Windows 2000 without installing anything additional. – Јοеу Jul 2 '09 at 10:09
@Johannes just for you meta.stackoverflow.com/questions/1775/… – Sam Saffron Jul 2 '09 at 12:19
1  
I'm with mbyrne215; this answer helped me more than the OP's solution, so I'm voting it up. Works perfectly in OS X 10.6.7. – asbjornu Mar 29 '11 at 16:40
show 4 more comments

This worked for me:

svn add `svn status .|grep "^?"|awk '{print $2}'`

(Source)

As you already solved your problem for Windows, this is a UNIX solution (following Sam). I added here as I think it is still useful for those who reach this question asking for the same thing (as the title does not include the keyword "WINDOWS").

share|improve this answer
1  
Nice, compact, concise, also lends itself to extension quite well. Thanks. – Norman H Feb 23 '12 at 13:38
1  
Great. Also easy to expand, modify to delete etc. – Drewid Apr 18 '12 at 14:43
Perfect for what i needed. Thank you! – Jeff Jun 14 '12 at 16:06

What works is this:

c:\>svn add . --force

Runs recursively and prints what was added.

(@Joey. That solution doesn't work for me on Windows. Firstly it doesn't recurse. Secondly it spews out so much warning spam about files with reserved names, ignored files, files already under version control and locked files used by other processes that it's pointless since at the end of the command you can't tell what (if anything) was actually added.)

share|improve this answer

Tortoise SVN has this capability built in, if you're willing to use a non-command-line solution. Just right click on the top level folder and select Add...

share|improve this answer

svn st|grep ?|cut -d? -f2|xargs svn add

share|improve this answer
1  
Or you can use cut to do grep's job: svn status | cut -d ? -f 2 -s | xargs svn add – Eric3 Jun 9 '11 at 16:53

Or possibly

List all changed files. Limit this list to lines with '?' at the beginning - i.e. new files. Remove the '?' at the beginning of the line. Remove the spaces at the beginning of the line. Pipe the filenames into xargs to run the svn add multiple times. Use the -i argument to xargs to handle being able to import files names with spaces into 'svn add' - basically, -i sets {} to be used as a placeholder so we can put the " characters around the filename used by 'svn add'.

Advantage is that this should handle filenames with spaces in them.

svn status /home/websites/shop2_v1_1 | grep -Z "^?" | sed s/^?// | sed s/[[:space:]]*// | xargs -i svn add \"{}\"

share|improve this answer
svn add --force .

This will add any unversioned file in the current directory and all versioned child directories.

share|improve this answer

i always use

copy&paste

svn st | grep "^\?" | awk "{print \$2}" | xargs svn add $1
share|improve this answer
Op explicity states that a Unix solution is no use to him. – Neutrino Aug 27 '12 at 14:46
for /f "usebackq tokens=2*" %%i in (`svn status ^| findstr /r "^\?"`) do svn add "%%i %%j"

within this implementation you'll guys get a trouble in the case your folders/filenames have more then one space like below:

"C:\PROJECTS\BACKUP_MGs_via_SVN\TEST-MG-10\data\destinations\Sega Mega      2"
"C:\PROJECTS\BACKUP_MGs_via_SVN\TEST-MG-10\data\destinations\One space"
"C:\PROJECTS\BACKUP_MGs_via_SVN\TEST-MG-10\data\destinations\Double  space"
"C:\PROJECTS\BACKUP_MGs_via_SVN\TEST-MG-10\data\destinations\Single"

such cases are covered by simple:

for /f "usebackq tokens=1*" %%i in (`svn status ^| findstr /r "^\?"`) do svn add "%%j"
share|improve this answer

I think I've done something similar with:

svn add . --recursive

but not sure if my memory is correct ;-p

share|improve this answer
2  
just a update for your memory: svn 1.4 and 1.5 don't support --recursive as parameter for svn add :) – Ludwig Wensauer May 17 '10 at 8:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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