Reputation: 19507
I am having problems with SVN and also provisioning with Xcode 4 and I want to uninstall it.
How do I uninstall Xcode 4 and will I be fine using Xcode 3 from now on or what does everyone recommend.
Upvotes: 6
Views: 2495
Reputation: 35925
Uninstalling Xcode is pretty straightforward, and involves the use of the Terminal:
sudo <Xcode>/Library/uninstall-devtools --mode=all
where <Xcode>
should be replaced by the path to which the tools were installed (e.g., /Developer
).
Upvotes: 9
Reputation: 212979
If you really do want to uninstall rather than just have two or more versions co-existing then use:
/Developer/Library/uninstall-devtools
Upvotes: 7