Remove source control for Xcode project

前端 未结 4 641
渐次进展
渐次进展 2020-12-02 20:48

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?

4条回答
  •  日久生厌
    2020-12-02 21:28

    1. Quit XCode.
    2. Open Terminal.
    3. Navigate to the root directory of the project.
    4. Type find ./ -name .svn -exec rm -rf {} \;.
    5. Open your project.

    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.

提交回复
热议问题