SVN Error - Not a working copy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:56:53Z http://stackoverflow.com/feeds/question/374313 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy 4 SVN Error - Not a working copy Vijay Dev 2008-12-17T11:51:40Z 2009-06-01T21:16:27Z <p>I got quite a few questions about the same topic here on SO. But could not get an useful answer. And none of these questions talk about the <em>exact</em> problem I have. So I thought adding one more question here is ok. Please do not close this as a duplicate !</p> <p>Recently our svn server was changed and we did a svn switch. Since the working copy had a huge amount of unversioned resources, the working copy got locked and we started switching folder by folder for all folders under svn, which works perfectly fine.</p> <p>But at the top most level of the repository, when I try to update files, I get the <em>svn: Working copy '.' locked</em> error and cleanup is not helping either. When I do cleanup, I get errors like these - <em>svn: 'content' is not a working copy directory</em></p> <p>Fresh checkout is NOT an option at all. Are there any other ways to cleanup and release the locks and do the switch completely ?</p> <p><strong>EDIT:</strong> The last paragraph in JesperE's answer</p> <blockquote> <p>If you get a "not a working copy" when doing a recursive "svn cleanup" my guess is that you have a directory which should be a working copy (i.e. the .svn directory at the toplevel says so), but it is missing its own .svn directory. In that case, you could try to just remove/move that directory and then do a local update</p> </blockquote> <p>seems to be the solution to the problem in the repository. I have identified those folders and did a fresh checkout of those specific folders alone and wow, the locks are released in the subsequent cleanup! Thanks a lot JesperE !!</p> <p>But, I still cannot figure out the svn switch error which now reads something like,</p> <blockquote> <p>svn: The repository at 'svn://repourl/reponame/foldername' has uuid 'm/reponame', but the WC has 'b5b39681-0ff6-784b-ad26-2846b9ea8e7d'</p> </blockquote> <p>Any ideas ?</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374337#374337 6 Answer by JesperE for SVN Error - Not a working copy JesperE 2008-12-17T11:59:04Z 2008-12-17T11:59:04Z <p>Often when you can't accept an obvious answer (fresh checkout), it is a good idea to explain why. I can't think of a reason why a fresh checkout would never be an option.</p> <p>If you get a "not a working copy" error, it means (as I'm sure you know) that Subversion cannot find a proper .svn directory in there. Is there a .svn directory in "contents"? (That is the kind of information you have to provide in order to people to be able to troubleshoot the issue. Remember that we do not have access to your setup, so you have to explain it is such detail that we can figure out from your description whats wrong.)</p> <p>If you get a "not a working copy" when doing a recursive "svn cleanup" my guess is that you have a directory which should be a working copy (i.e. the .svn directory at the toplevel says so), but it is missing its own .svn directory. In that case, you could try to just remove/move that directory and then do a local update (i.e. "rm -rf content; svn checkout content").</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374382#374382 1 Answer by JesperE for SVN Error - Not a working copy JesperE 2008-12-17T12:22:09Z 2008-12-17T12:22:09Z <blockquote> <p>svn: The repository at 'svn://repourl/reponame/foldername' has uuid 'm/reponame', but the WC has 'b5b39681-0ff6-784b-ad26-2846b9ea8e7d'</p> </blockquote> <p>Every subversion repo has a unique identifier (uuid). Subversion uses this to make sure that the repo is actually the same when doing things like switching. You should probably change the uuid on the server to be the same as before.</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374391#374391 0 Answer by agnul for SVN Error - Not a working copy agnul 2008-12-17T12:27:00Z 2008-12-17T12:27:00Z <p>Could it be a working copy format mismatch? It changed between svn 1.4 and 1.5 and newer tools automatically convert the format, but then the older ones no longer work with the converted copy.</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374462#374462 0 Answer by Samiksha for SVN Error - Not a working copy Samiksha 2008-12-17T12:57:36Z 2008-12-17T12:57:36Z <p>You must have deleted a SVN - base file from your project (which are read-only files). Due to this you get this error.</p> <p>Check out a fresh project again, merge the changes (if any) of your older SVN project with new one using "Winmerge" and commit the changes in your latest check out.</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374510#374510 0 Answer by abatishchev for SVN Error - Not a working copy abatishchev 2008-12-17T13:21:49Z 2008-12-17T13:21:49Z <p>Workaround: Rename directory which is not 'working copy' Checkout/update/restore this directory again Move files from renamed directory to new Commit changes</p> <p>Reason: You made some changes to some files under .svn directory, this breaks 'working copy'</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/597789#597789 0 Answer by alastairs for SVN Error - Not a working copy alastairs 2009-02-28T09:29:10Z 2009-02-28T09:29:10Z <p>@JesperE <a href="http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374382#374382">mentions</a> that you need to change the uuid. The following should help you achieve this. </p> <p>On SVN 1.5+, you can do svnadmin setuuid; you can then check that it's been set correctly using svnlook uuid. On earlier versions of SVN, it's a harder process. See <a href="http://chestofbooks.com/computers/revision-control/subversion-svn/Managing-Repository-UUIDs-Reposadmin-Maint-Uuids.html" rel="nofollow">http://chestofbooks.com/computers/revision-control/subversion-svn/Managing-Repository-UUIDs-Reposadmin-Maint-Uuids.html</a></p> <p>Additionally the UUID of "m/reponame" looks suspicious. I believe it should be a hex-formatted number like the working copy's, so maybe this action will improve things all round :-)</p> <p>[I originally commented on <a href="http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/374382#374382">@JesperE's answer</a>, but created this answer to make it more obvious to people and more helpful for Google. I've since removed my comments. ]</p> http://stackoverflow.com/questions/374313/svn-error-not-a-working-copy/936827#936827 0 Answer by Ken Arnold for SVN Error - Not a working copy Ken Arnold 2009-06-01T21:16:27Z 2009-06-01T21:16:27Z <p>I got into a similar situation (<code>svn: 'papers' is not a working copy directory</code>) a different way, so I thought I'd post my battle story (simplified):</p> <pre><code>$ svn add papers svn: Can't create directory 'papers/.svn': Permission denied </code></pre> <p>Oops! fix permissions... then:</p> <pre><code>$ svn add papers svn: warning: 'papers' is already under version control $ svn st ~ papers $ svn cleanup svn: 'papers' is not a working copy directory </code></pre> <p>And even moving <code>papers</code> out of the way and running <code>svn up</code> (which worked for the OP) didn't fix it. Here's what I did:</p> <pre><code>$ mv papers papers_ $ svn cleanup $ svn revert papers Reverted 'papers' $ mv papers_/ papers $ svn add papers </code></pre> <p>That worked.</p>