On a server, I used the svn import command to put files into SVN.

I checked the files out to my local machine, made some changes and then committed back.

Now I want to update the server copy of the files, but using svn update, it shows "skipped '.'" and svn status shows "svn: warning: '.' is not a working copy".

link|improve this question

54% accept rate
How to make a directory 'working copy' ? – Mark May 3 '11 at 12:06
Are you running it in the folder that you've checked out to? Is there a hidden .svn folder? – forsvarir May 3 '11 at 12:08
Hang on... are you running the update on the repository server? They should already have been updated when you did the commit... – forsvarir May 3 '11 at 12:08
feedback

2 Answers

up vote 0 down vote accepted

Importing into svn doesn't make what you import a working copy. You have to check it out on the server just as you did locally. From then on it will be a working copy and you can use update.

link|improve this answer
makes sense, thanks. Now from zero, I want to put files from server to SVN (I did svn import, wrong way). How can do this ? – Mark May 3 '11 at 12:18
Does 'SVN CHECKOUT' do the magic on server ? – Mark May 3 '11 at 12:20
SVN Checkout is for getting a fresh copy of the server files to a local folder. Not for updating an existing version. – Chris May 3 '11 at 12:22
How to make a directory 'working copy' ? – Mark May 3 '11 at 12:34
@Mark, there is no shortcut, there is no direct way to import and make it a working copy. Some IDE's like netbeans do this but underwater they still have todo an import export cycle. You have to import and then do a checkout. I allways backup and empty the orginal dir first thought i'm not sure that is actually needed. It might help to read the excellent manual: svnbook.red-bean.com/en/1.5/svn.tour.html – Eelke May 3 '11 at 12:48
feedback

You have to do an SVN Update first to merge and make a the directory a working copy. Then Commit to commit your changes. You can also sometimes use the SVN Cleanup command to resolve similar kinds of issues.

link|improve this answer
The OPs question stated that svn update didn't work, telling them to run it doesn't address the problem. – forsvarir May 3 '11 at 12:28
SVN Cleanup can sometimes resolve these issues. – Chris May 3 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

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