vote up 1 vote down star

Hi,

I've had subversion running in Xcode for a while. The integration of subversion has always hung by a thread. However my subversion server has changed its ip address ... and my xcode project still tries to look up the source on the old ip.

I have changed the ip of the subversion server via the SCM menu in xcode ... however these changes don't seem to effect the project.

Anyone got any idea how I change the subversion ip in the project?

Cheers Rich

flag

60% accept rate

3 Answers

vote up 3 vote down

It's not Xcode, it's svn itself that still looks to the old reposotory. Try firing up a terminal, and cd'ing into the project directory. There use the switch svn command:

svn switch NewURL

then refresh or close/open the Xcode project.

link|flag
I think this is probably the answer however when i try it i get the following svn switch rich@192.168.0.2:8443/svn/iphone svn: 'rich@192.168.0.2:8443/svn/iphone' is not the same repository as 'rich@192.168.0.3:8443/svn/iphone' any idea what I'm doing wrong? – Rich Jul 14 at 19:07
i don't think switching will work as my repositry has been updated ... – Rich Jul 14 at 19:13
Well, you can't ask us so much as your exact URL repository... ;) So, you may just check out a new project tree with Xcode or with 'svn co URL NewProject' and copy any new code you left on the old tree to the new one. Then delete the old tree. Double check before deleting. – IlDan Jul 14 at 23:41
vote up 0 vote down

Try creating a new SCM repository and setting your project to the new one, and if that works, you can safely delete the old one.

link|flag
can you explain how you 'set the project to the new one'? – Rich Jul 14 at 19:14
Sure! You can create a new repository in the "Configure SCM Repositories..." menu item under SCM in Xcode. Once you've created a new repo, go to SCM > Configure SCM For This Project... In the new window that appears, towards the bottom should be a drop down menu labelled "SCM Repository" choose the new one you just created in this drop down and see if that works. – Jasarien Jul 14 at 19:21
ah .. i don't seem to have the 'Configure SCM for this project'. Maybe one a project is bound to SCM that option disappears ... – Rich Jul 14 at 19:27
Interesting. You should be able to reach the same config window by choosing Project > Edit Project Settings from within XCode. – Jasarien Jul 14 at 19:30
managed to find the option ... however it still refers to the old ip :( – Rich Jul 14 at 19:54
show 1 more comment
vote up 2 vote down

You need to use the --relocate option for the svn switch command if you are just changing hostnames or ip addresses.

So, something like this:

svn sw --relocate svn://brian@123.123.123.123/mypath svn://brian@122.122.122.122/mypath

link|flag

Your Answer

Get an OpenID
or

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