How can I restore svn control if the .svn folder has been damaged? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:57:55Z http://stackoverflow.com/feeds/question/96313 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged 10 How can I restore svn control if the .svn folder has been damaged? Eric Goodwin 2008-09-18T20:02:16Z 2008-11-11T00:01:27Z <p>I've got a couple large checkouts where the .svn folder has become damaged so I'm getting and error, "Cleanup failed to process the following path.." And I can no longer commit or update files in that directory.</p> <p>I'd just delete and do the checkout again but the whole directory is over a gig.</p> <p>Is there a tool that will restore the .svn folders for specific folders without having to download everything?</p> <p>I understand that it's going to have to download all the files in that one folder so that it can determine if they've been changed..but subdirectories with valid .svn folders should be fine.</p> <p>Oh.. I'm a big fan of TortoiseSVN or the command line for linux.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/96356#96356 2 Answer by Sietse for How can I restore svn control if the .svn folder has been damaged? Sietse 2008-09-18T20:06:06Z 2008-09-18T20:06:06Z <p>is there anyone with a working checkout that you could copy the .svn folder(s) from?</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/96364#96364 1 Answer by Ben Hoffstein for How can I restore svn control if the .svn folder has been damaged? Ben Hoffstein 2008-09-18T20:06:40Z 2008-09-18T20:06:40Z <p>I've hit this in the past and found no working solution except the "nuclear option" (i.e. delete the directory and re-checkout).</p> <p>Not sure if this is your problem, but my corruption was being caused by an on-access virus scanner on the same machine as SVN server.</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/96372#96372 4 Answer by Greg Hewgill for How can I restore svn control if the .svn folder has been damaged? Greg Hewgill 2008-09-18T20:07:19Z 2008-09-18T20:07:19Z <p>If you know which folder has the damaged .svn directory, you can just delete that one directory and run an svn update again. You may have to delete the whole directory including its current contents. Of course, if the folder with the damaged .svn directory is the one containing a gigabyte, then you're back where you started.</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/96415#96415 6 Answer by Sander Rijken for How can I restore svn control if the .svn folder has been damaged? Sander Rijken 2008-09-18T20:13:07Z 2008-09-21T13:22:51Z <p>In case you have changes to the files, and cannot delete them, you can use the Subversion 1.5 feature that allows you to 'checkout with obstructions'.</p> <p>Just delete the .svn directory in this directory and:<br /> (you don't need to delete inside directories when using --depth files, thanks Eric)</p> <p>In case the broken directory was the top directory of the working copy:</p> <pre><code>svn checkout --depth files --force REPOS WC </code></pre> <p>And if the directory above the broken one is still versioned run:</p> <pre><code>svn update --depth files --force WC </code></pre> <p>in that directory.<br /> In both samples REPOS is the url in the repository that matches the broken directory, and WC is the path to the directory.</p> <p>Files that were originally modified will be in the modified state after this.</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/96437#96437 1 Answer by Alexander for How can I restore svn control if the .svn folder has been damaged? Alexander 2008-09-18T20:15:36Z 2008-09-18T20:15:36Z <p>If the subdirectories and OK and it's the subdirectories that are large, you could try a non-recursive fresh checkout.</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/96449#96449 0 Answer by Adam for How can I restore svn control if the .svn folder has been damaged? Adam 2008-09-18T20:17:17Z 2008-09-18T20:17:17Z <p>Make a backup of the folder that has the missing .svn</p> <p>Then delete the folder</p> <p>If it is the root of the checkout, you will have to re-checkout</p> <p>If it is not the root, just run an update from a directory above.</p> <p>Then move the backup folder on top of it. (Ideally do not move back the .svn folders)</p> <p>Continue working and be sure to update/commit!</p> http://stackoverflow.com/questions/96313/how-can-i-restore-svn-control-if-the-svn-folder-has-been-damaged/279620#279620 0 Answer by logoin for How can I restore svn control if the .svn folder has been damaged? logoin 2008-11-11T00:01:27Z 2008-11-11T00:01:27Z <p>I encountered the same error today. It happened when I tried to switch branches and fail to delete one of the file that is not in svn repository. After that, the folder was locked and I can't use any command to get it work again. </p> <p>I basically deleted what I had and redo the checkout. It is time consuming, but I really want to make sure svn is clear before I can start working again. Thanks!</p>