Which files should I include in .gitignore when using Git in conjunction with Xcode?
|
I was previously using the top-voted answer, but it needs a bit of cleanup, so here it is re-done for Xcode 4, with some improvements. I've researched every file in this list, but several of them do not exist in Apple's official xcode docs, so I had to go on Apple mailing lists. If you need to customize, here's a gist you can fork: https://gist.github.com/3786883
|
|||||||||||
|
|
Based on this guide for Mercurial my .gitignore includes:
I've also chosen to include:
which, according to this Apple mailing list post, are "user-specific project settings". And for Xcode 4:
|
|||||||||||||||||||||
|
|
For Xcode 4 I also add:
|
|||||
|
|
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
|
|||||
|
|
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. |
|||||
|
|
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 |
|||
|
|
|
Mine is a .bzrignore, but same idea :)
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. |
|||
|
|
|
The people of GitHub have a pretty exhaustive and efficient .gitignore file for Xcode projects: https://github.com/github/gitignore/blob/master/Objective-C.gitignore |
|||||
|
|
make them Global and not at the directory level so your not pushing them to others.. |
|||
|
|
|
I found that projects that included other project became broken when I include the xcworkspace files in my list of ignores. |
||||
|
|
|
I've added:
and placed my .gitignore file at the root of my project. After committing and pushing. I then ran:
buried with the folder below:
I then ran git commit and push again |
|||||||
|
|
This isn't a new answer, rather a comment on Adam's... Adam, can you please update your gist at https://gist.github.com/3786883 to include
I found your gist before this page. However it appears to lack your update... I was sure it should have been included, as you concur. (I would have added this as an edit/comment, but don't have the privileges...) |
|||
|
|
I'm using both AppCode and XCode.
So append this to Adam's
|
|||
|
|

