Xcodeproj files

The following files have nothing to do with project settings, right? These are just properties for the Xcode IDE.

*. Mode1v3
* .pbxuser

+3
source share
3 answers

All files *.mode*, *.pbxuserand *.perspective*can be safely dropped without affecting the organization of the project. These files are used by Xcode to track which documents are open, which windows are displayed, what are their sizes, and how your project looks.

I ignore everything except the file project.pbxprojwhen managing projects in version control. Since I'm using Subversion, I have the following line in ~ / .subversion / config:

global-ignores = *.o *.lo *.la .*~ ._* .DS_Store *.pbxuser *.mode* *.perspective*

+8
source

*.perspectivev3, Xcode. "project.pbxproj".

+2

. The .pbxuser file contains custom executables. Therefore, if you use a custom executable as a unit test runner (or some other executable), you may have to share this file

0
source

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


All Articles