Created
May 26, 2011 16:48
-
-
Save rcaetano/993501 to your computer and use it in GitHub Desktop.
.gitignore file for xcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------------------------------------------- | |
# Mac OS X noise | |
#---------------------------------------------------------------------- | |
.DS_Store | |
profile | |
#---------------------------------------------------------------------- | |
# XCode (and ancestors) per-user config (very noisy, and not relevant) | |
#---------------------------------------------------------------------- | |
*.mode1 | |
*.mode1v3 | |
*.mode2v3 | |
*.perspective | |
*.perspectivev3 | |
*.pbxuser | |
# Generated files | |
VersionX-revision.h | |
# build products | |
build/ | |
#---------------------------------------------------------------------- | |
# Android | |
#---------------------------------------------------------------------- | |
# built application files | |
*.ap[k_] | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class | |
# generated GUI files | |
*R.java | |
#---------------------------------------------------------------------- | |
# Other source repository archive directories (protects when importing) | |
#---------------------------------------------------------------------- | |
.hg | |
.metadata | |
.svn | |
CVS | |
#---------------------------------------------------------------------- | |
# Dreamweaver Design Notes | |
#---------------------------------------------------------------------- | |
_notes | |
#---------------------------------------------------------------------- | |
# Unity | |
#---------------------------------------------------------------------- | |
Temp/ | |
#---------------------------------------------------------------------- | |
# automatic backup files | |
#---------------------------------------------------------------------- | |
*~ | |
*~.nib | |
*.lock | |
*.out | |
*.swp | |
*(Autosaved).rtfd/ | |
Backup[ ]of[ ]*.pages/ | |
Backup[ ]of[ ]*.key/ | |
Backup[ ]of[ ]*.numbers/ | |
#---------------------------------------------------------------------- | |
# Windows thumbnail cache | |
#---------------------------------------------------------------------- | |
Thumbs.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment