How to remove GIT version control from an Xcode 5 project

Can someone tell me how to completely remove GIT version control from an Xcode 5 project?

I decided to start using GIT when upgrading to Xcode 5, but then ran into a problem with the .xcuserstate exception in the .gitignore file. This will be successful, then the message "UI Status" will appear when you try to transfer everything else, and I could not get rid of it. There are many suggestions for terminal commands, etc., but in the end I will get into the circle.

To exit the IDE to run a few terminal commands, I don’t think it’s a well-integrated version control system.

I am the only one working on this project, so you will just need to maintain everything on a regular basis.

thanks

+6
source share
1 answer

In xcode 5

  • Go to Xcode -> Preference
  • Select Source Control
  • Deselect Enable Source Control

Xcode 5 removed repository organizer

+15
source

Source: https://habr.com/ru/post/955458/


All Articles