When I look at the package of one of my projects, I sometimes see one of these. What is it?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This is the file where XCode saves the preferences of your "perspective". Where you windows are, if your console is open, where it is on the screen.
Which groups are open in the side bar etc.
Basically everything you need that xcode looks the same when you open it next time.

There is another file name username.pbxuser. Xcode stores for example the code bookmarks in it.

You don't need them to compile the project. And you should not put them into version control either.

link|improve this answer
feedback

Those are files that Xcode creates. They are user-specific project settings. No need to worry about them.

Edit: Based off of this question, I would add these to your .gitignore/.hgignore:

.DS_Store
*.swp
*~.nib

build/

*.pbxuser
*.perspective
*.perspectivev3
link|improve this answer
Well, I'm using Mercurial to share with other people; should I add it to my repository? or to .hgignore? – William Jockusch Mar 7 '11 at 18:02
Yes, those files should be ignored. I'll update my answer. – sudo rm -rf Mar 7 '11 at 18:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.