.xcodeproj does not work with Xcode SCM tool

I use the SCM tools built into Xcode to version control applications.

I created an application for the iPhone and I added / uploaded it to the Subversion server, but the .xcodeproj file will not load (all class files, resources, etc.)! I didn’t even get the "Add to repository" option. Sometimes it gets β€œA” (add) next to it in the β€œSCM” column, but still, the next time I make changes or complete the whole project, it still doesn't load and doesn't appear on the server. As a result, my team cannot get and start the project.

Is there a way to do something (other than using a terminal or versions)?

Thanks.

+4
source share
2 answers

<project>.xcodeproj is actually a directory. Project data is stored in <project>.xcodeproj/project.pbxproj . Note that there are other relatively unimportant files in .xcodeproj that you don’t need to worry about - just make sure project.pbxproj gets a checkbox.

+3
source

The best way is to check the latest version from SVN and make / copy changes to the file and commit it.

0
source

All Articles