Uninstall Xcode 4 and use Xcode 3

I am having problems with SVN as well as using Xcode 4 and I want to remove it.

How do I remove Xcode 4 and now I will be fine with Xcode 3 or whatever everyone recommends.

+6
xcode
source share
2 answers

Removing Xcode is quite simple and involves using a terminal:

sudo <Xcode>/Library/uninstall-devtools --mode=all 

where <Xcode> should be replaced with the path to which the tools were installed (for example, /Developer ).

+9
source share

If you really want to delete, and not just two or more versions that exist, use:

 /Developer/Library/uninstall-devtools 
+7
source share

All Articles