Which files should I include in .gitignore when using Git in conjunction with Xcode?

link|improve this question
feedback

9 Answers

up vote 192 down vote accepted

Based on this guide for Mercurial my .gitignore includes:

.DS_Store
*.swp
*~.nib

build/

*.pbxuser
*.perspective
*.perspectivev3

I've also chosen to include:

*.mode1v3
*.mode2v3

which, according to this Apple mailing list post, are "user-specific project settings".

And for Xcode 4:

xcuserdata
link|improve this answer
36  
I don't particularly like the .pbxuser/.perspective/*.perspectivev3 patterns. I much prefer the following .xcodeproj/ !*.xcodeproj/project.pbxproj That ignores everything inside a *.xcodeproj except the project.pbxproj. – Kevin Ballard Mar 15 '09 at 20:33
4  
I do not ignore *.pbxuser, *.perspective and *.perspectivev3 because I like to keep those settings back when I clone my repository. – lajos May 27 '09 at 5:57
3  
Use build/ to exclude only directories named build in case you might have a script or something named build that you don't want to ignore. – nicerobot Jul 3 '09 at 20:16
4  
Also you might want to add that you can make a "global" gitignore file like this: git config --global core.excludesfile ~/.gitignore – Jess Bowers Apr 27 '10 at 14:56
19  
I'd like to caution everyone who added .gitignore file after they have committed the project: those files you ignore are still being tracked. You'll have to remove them from git manually using git rm --cached <files> – pixelfreak Jun 27 '11 at 1:44
show 8 more comments
feedback

For Xcode 4 I also add:

YourProjectName.xcodeproj/xcuserdata/*
YourProjectName.xcodeproj/project.xcworkspace/xcuserdata/*
link|improve this answer
37  
If you just add xcuserdata, then that takes care of both. – MattDiPasquale Apr 12 '11 at 18:13
feedback

I included these suggestions in a Gist I created on Github: http://gist.github.com/137348

Feel free to fork it, and make it better.

link|improve this answer
4  
Also one of the Github guys has collected some .gitignore files. Here is the Objective-C specific one- github.com/github/gitignore/blob/master/Objective-C.gitignore – program247365 Jul 26 '11 at 4:11
feedback

Regarding the 'build' directory exclusion -

If you place your build files in a different directory from your source, as I do, you don't have the folder in the tree to worry about.

This also makes life simpler for sharing your code, preventing bloated backups, and even when you have dependencies to other Xcode projects (while require the builds to be in the same directory as each other)

You can grab an up-to-date copy from the Github gist https://gist.github.com/708713

My current .gitignore file is

# Mac OS X
*.DS_Store

# Xcode
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
*.xcuserstate
project.xcworkspace/
xcuserdata/

# Generated files
*.o
*.pyc


#Python modules
MANIFEST
dist/
build/

# Backup files
*~.nib
link|improve this answer
5  
I do have the build folder outside of the project folder, but when other users build the project, it by default is recreated in the project- so I found that adding it to the ignore file is a better solution, otherwise it gets readded in their commits. – lajos May 27 '09 at 5:53
feedback

Heres a script I made to auto create your .gitignore and .gitattributes files using Xcode... I hacked it together with a few other people's stuff. Have fun!

http://github.com/tbarbe/Xcode-Git-User-Script

No warranties... I suck at most of this - so use at your own peril

link|improve this answer
feedback

Mine is a .bzrignore, but same idea :)

.DS_Store
*.mode1v3
*.pbxuser
*.perspectivev3
*.tm_build_errors

the tm_build_errors is for when I use TextMate to build my project. Not quite as comprehensive as Hagelin but I thought it was worth posting for the tm_build_errors line.

link|improve this answer
feedback

make them Global and not at the directory level so your not pushing them to others..

link|improve this answer
feedback

I found that projects that included other project became broken when I include the xcworkspace files in my list of ignores.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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