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

When I run

svn st 

on my working copy I get some "?" entries which are located in subdirectories of working copy root. I want to add all of them to the repository. I try:

svn add --force .

and

svn add --force *

but it doesn't work.

WORKING SOLUTION:

svn add --depth=infinity --force *
share|improve this question

3 Answers

up vote 14 down vote accepted

Don't know if it work in windows, but you could try:

svn add --depth=infinity *
share|improve this answer
I updated the source parameter to make the command work. – yvoyer Nov 29 '10 at 15:33
svn add --depth=infinity --force * works! – JohnM2 Nov 29 '10 at 16:08

Perhaps try:

svn status | grep '^\?' | sed -e 's/^? *\(.*\)/\1/;s/ /\\ /g' | xargs svn add
share|improve this answer
1  
Windows-XP console :) – JohnM2 Nov 29 '10 at 12:43
-1: He needs this for Windows, not a Unix/Linux platform where sed and grep don't exist unless he has Cygwin installed, but the question doesn't indicate that. – jgifford25 Nov 29 '10 at 15:01

Interesting...

How are you getting files named ?? I can't seem to generate them, even if using the ^ character. I always thought ? was an illegal character in Windows file names.

Are you certain the name contains a question mark? Or, could the question mark be an indication of an unprintable character?

share|improve this answer
By "?" entries I mean lines in "svn st" command output which begin with "?" character (unversioned item). Maybe I wasn't specific enough. – JohnM2 Nov 30 '10 at 8:07
Ah! I see. I thought you were talking about a file called "?" and you couldn't add it. What you're talking about are files that aren't in the repository, but are scattered throughout your directory tree. The "svn add --depth=infinity --force" should work then. – David W. Dec 2 '10 at 21:03

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.