I'm trying to svn checkout into my public_html folder, but I get this error: svn: '.' is already a working copy for a different URL

My brother already set up a boiler plate site for me, but I've changed it and put those changes into a repo of my own. How do I make this folder not be a working copy of the repo he set up originally?

Can I delete the public_html folder and make a new one? I'm fine with starting from scratch, as I'm going to just checkout an already installed drupal site onto this site.

I saw in another question that a solution may be to simply delete the .svn directory. I tried this, but it said permission denied for several subdirectories in .svn.

Thanks in advance for ANY help, hope this question isn't too dumb...

link|improve this question

1  
If you don't have permission to delete public_html/.svn, then you won't be able to delete public_html either. – rodion Jun 1 '09 at 2:47
SVN from cmd line! you should totally use tortoise svn tortoisesvn.net/downloads – acidzombie24 Jun 1 '09 at 3:35
feedback

7 Answers

up vote 1 down vote accepted

This sequence of commands should do it if you're in a hurry.

There's gotta be a way to update the working copy's reference url, but I don't know it off-hand.

$ svn diff > ../changes.patch
$ rm -rf * ..?*
$ svn checkout url
$ patch -p < ../changes.patch
link|improve this answer
excellent. +1 – acidzombie24 Jun 1 '09 at 3:35
feedback

If you don't need a connection with your brother's repo, then just remove all his .svn dirs.

The permission issue is not related to SVN, definitely.

link|improve this answer
feedback

You could try "svn switch". In the example at http:// svnbook.red-bean.com/en/1.0/ch04s05.html, it's as easy as:

 $ svn switch http:// svn.example.com/repos/calc/branches/my-calc-branch

But since you have subdirectory permissions issues, your plan to re-create public_html sounds like the best solution; just beware of typos with 'rm'. Try 'mv' to just move the old directory out of the way, which doesn't depend on subdirectory permissions.

You can use:

 $ mv public_html old_public_html
 $ mkdir public_html
 $ chmod 755 public_html
 $ cd public_html
 $ svn checkout url
link|improve this answer
feedback

I saw in another question that a solution may be to simply delete the .svn directory. I tried this, but it said permission denied for several subdirectories in .svn.

Even when you can not delete directories you may move them away:

$ mv .svn /tmp/dustbin

edit:

You should have write access at least to your home directory:

$ mv ~/public_html /tmp/dustbin
$ mkdir ~/public_html
link|improve this answer
nope, can't move it – Silver Jun 2 '09 at 17:31
Doesn't work as you don't have permission to update "..". – Joshua Mar 12 at 17:22
feedback

I ran into this error ("... is already a working copy for a different URL") just now in Eclipse 3.5. I was trying to check out a particular branch of a project from the Eclipse "SVN Repository Exploring" perspective (the Subclipse subversion client adapter from tigris.org). I had drilled into [project] | branches | [branch] that I was interested in, then did right-click on the branch that I was interested in and selected Checkout; this led to the error.

For me, the fix was to instead go to the "Java EE" perspective, right-click on my project, and select Replace With | Branch/Tag... from the context menu. Doing this, I was successfully able download the branch I was interested in.

link|improve this answer
feedback

I've found that if I simply go to the J2EE perspective, right click on the project, and select Delete before I attempt to checkout a new branch, it solves this problem.

link|improve this answer
feedback

I get these problems with SVN a lot. What i typically do is right click, use clean up, then update, cleanup then commit or w/e. If you need to, make a diff, rename the folder, import a new folder then apply the diff. Or move all non hidden files. Sorry i cant be more helpful. Whatever you do, do not delete your source. Archive but dont delete until its in your repo again and even then i would hold off on deleting until a few weeks down the road.

link|improve this answer
I don't have a site really even set up, it just displays "Plastic Reverberation!" Also, I'm using SVN via command line, but I will look up the clean up command. – Silver Jun 1 '09 at 2:55
feedback

Your Answer

 
or
required, but never shown

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