I use Cornerstone for managing my Subversion repositories, so I don't need Xcode's integration, and I'm noticing Xcode is dumping loads of SVN-related output into my console (it recognises that my project is a local SVN copy)...

In particular, there are loads of ERROR: Your working copy returned an SVN status of "external" that we don't handle (yet) messages due to my svn:externals.

This has to be slowing the IDE down - does anyone know of any way to disable the SVN integration in Xcode 4?

link|improve this question

73% accept rate
feedback

5 Answers

up vote 17 down vote accepted

Right! This seems to stop it for good - simply rename the following package to something other than IDESubversion.ideplugin (I've renamed mine IDESubversion-DISABLED.ideplugin)...

Xcode 4.3:
/Applications/Xcode.app/Contents/PlugIns/IDESubversion.ideplugin

Xcode 4.0 - 4.2:
/Developer/Library/Xcode/PrivatePlugIns/IDESubversion.ideplugin

Note that in Xcode 4.0 & 4.1 (and possibly 4.2) renaming the extension seemed to work fine. In Xcode 4.3 however, you might need to leave the extension intact, and rename the name portion of the bundle instead (to avoid the error on launch that people have described in the comments below).

Tip o' the hat to: Remove git from project in Xcode 4

link|improve this answer
I just spent a day trying to stop the damn plugin from ruining my SVN repo. Big thanks for this solution! – Ovidiu Bute Sep 25 '11 at 11:31
Yep, finally a solution for permanently disabling version control on xcode 4. Thanks! – leolobato Oct 1 '11 at 18:13
This worked fine since now. Yesterday I updated to the new 4.2 version and the plugin appeared again. If I remove it Xcode fails stating because of a missing component. – lluismontero Oct 13 '11 at 9:40
Renaming the plugin still works for me with the 4D199 GM build of Xcode 4.2 that was release to the dev portal last week... – Mark Beaton Oct 13 '11 at 23:10
1  
Worked for me on Xcode 4.2 – simon.d Nov 27 '11 at 3:57
show 5 more comments
feedback

Try this:

  1. Window -> Organizer
  2. Repositories
  3. Select your repository
  4. Click the "-" button at the bottom of the Organizer window

Unfortunately, it seems that you have to do this every time you restart Xcode.

link|improve this answer
1  
Yes, this seems to be the only way, and you're right, it just re-binds when you re-launch. Accepting... – Mark Beaton Apr 21 '11 at 10:41
2  
FYI, I've logged a ticket (9316273) in Apple's Radar bug tracking system, requesting the ability to disable change tracking for a given working copy. – Mark Beaton Apr 21 '11 at 10:58
yay apple for 'helping'. – orion elenzil May 7 '11 at 19:22
2  
Another FYI - Apple have accepted this is a bug, so it may be fixed in the future... – Mark Beaton May 9 '11 at 6:05
good to hear. thanks for the update. – orion elenzil May 22 '11 at 20:53
show 1 more comment
feedback

As a workaround you can block outgoing connections to your svn host with Little Snitch.

link|improve this answer
That's not the issue. The user wants to use subversion, just not the integrated client. They, like I, prefer Cornerstone. – MarqueIV Feb 12 at 2:02
@MarqueIV Well, you can block the outgoing connections just for XCode. This won't have any effect on your other clients. – Lego Feb 12 at 22:23
Actually, that's still a bad idea because Xcode can still modify the SVN-related files locally, which you wouldn't want it to do, especially if its working with a different version of SVN. The proper way to do it is to have Xcode not touch anything SVN-related, and the only way to do that is like they showed, to disable the built-in control. – MarqueIV Feb 13 at 1:10
@MarqueIV I wouldn't call it a bad idea, it's a personal taste and decision thing. I never experienced any bad behavior with XCode modifying local SVN-related files. For me disabling the built-in control every time XCode starts just sucks and I can live with the risk that XCode might modify some SVN-related files. – Lego Feb 13 at 10:42
Who said anything about every time Xcode starts? As explained here, you can disable it permanently. – MarqueIV Feb 14 at 2:06
show 1 more comment
feedback

Since the /Developer directory no longer exists, the IDESubversion.ideplugin has been relocated in Xcode version 4.3

The new path is: /Applications/Xcode/Contents/Plugins/IDESubversion.ideplugin

link|improve this answer
Removing both IDESubversion.ideplugin and IDEGit.ideplugin caused an error when launching Xcode: "Missing required components. Reinstall the Xcode Tools." This is in Xcode 4.3.2. – davidcann Apr 23 at 2:34
feedback

I'm not in front of my XCode IDE, but try this:

  1. Double click the project to set the settings
  2. Select "Subversion" in the SCM box and "Edit"
  3. Select "Disable SCM"

This should, at the very least, get rid of your console statements.

link|improve this answer
Thanks Rick, but I can't find the SCM box you're referring to in my project settings... Remember this is Xcode 4 I'm dealing with here, not Xcode 3 – Mark Beaton Mar 30 '11 at 22:48
I apologize for that Mark. I was just going from memory. I'll wait to get home and validate further. Although I use SVN with my projects, there's no "SCM" option in your menu, to configure your repositories? Perhaps you project name is inadvertently in that repository listing. Also, you project settings, you should have a selection for "Project Roots & SCM." You can validate here that your project is not associated with a repository. – Rick Mar 31 '11 at 13:11
I'm thinking that it's reading the SVN directories and assuming it needs to handle the SVN connection. – Rick Mar 31 '11 at 13:43
feedback

Your Answer

 
or
required, but never shown

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