I\'ve been using source control on an Xcode project for awhile, but now I don\'t want to use source control.
How do you remove source control from a project in Xcode?
find ./ -name .svn -exec rm -rf {} \;.Your project should be disconnected from all repositories.
NOTE: The command searches for all filenames with extension .svn and removes (recursively and forcefully) all of them.