You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# .gitignore file for Xcode4 and Xcode5 Source projects
3
+
#
4
+
# Apple bugs, waiting for Apple to fix/respond:
5
+
#
6
+
# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation?
7
+
#
8
+
# Version 2.6
9
+
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
10
+
#
11
+
# 2015 updates:
12
+
# - Fixed typo in "xccheckout" line - thanks to @lyck for pointing it out!
13
+
# - Fixed the .idea optional ignore. Thanks to @hashier for pointing this out
14
+
# - Finally added "xccheckout" to the ignore. Apple still refuses to answer support requests about this, but in practice it seems you should ignore it.
15
+
# - minor tweaks from Jona and Coeur (slightly more precise xc* filtering/names)
16
+
# 2014 updates:
17
+
# - appended non-standard items DISABLED by default (uncomment if you use those tools)
18
+
# - removed the edit that an SO.com moderator made without bothering to ask me
19
+
# - researched CocoaPods .lock more carefully, thanks to Gokhan Celiker
20
+
# 2013 updates:
21
+
# - fixed the broken "save personal Schemes"
22
+
# - added line-by-line explanations for EVERYTHING (some were missing)
23
+
#
24
+
# NB: if you are storing "built" products, this WILL NOT WORK,
25
+
# and you should use a different .gitignore (or none at all)
26
+
# This file is for SOURCE projects, where there are many extra
27
+
# files that we want to exclude
28
+
#
29
+
#########################
30
+
31
+
#####
32
+
# OS X temporary files that should never be committed
# NB: also, whitelist the default ones, some projects need to use these
110
+
!default.pbxuser
111
+
!default.mode1v3
112
+
!default.mode2v3
113
+
!default.perspectivev3
114
+
115
+
#acuant config
116
+
/SampleApp/SampleApp/AcuantConfig.plist
117
+
118
+
119
+
####
120
+
# Xcode 4 - semi-personal settings
121
+
#
122
+
# Apple Shared data that Apple put in the wrong folder
123
+
# c.f. http://stackoverflow.com/a/19260712/153422
124
+
# FROM ANSWER: Apple says "don't ignore it"
125
+
# FROM COMMENTS: Apple is wrong; Apple code is too buggy to trust; there are no known negative side-effects to ignoring Apple's unofficial advice and instead doing the thing that actively fixes bugs in Xcode
126
+
# Up to you, but ... current advice: ignore it.
127
+
*.xccheckout
128
+
129
+
#
130
+
#
131
+
# OPTION 1: ---------------------------------
132
+
# throw away ALL personal settings (including custom schemes!
133
+
# - unless they are "shared")
134
+
# As per build/ and DerivedData/, this ought to have a trailing slash
135
+
#
136
+
# NB: this is exclusive with OPTION 2 below
137
+
xcuserdata/
138
+
139
+
# OPTION 2: ---------------------------------
140
+
# get rid of ALL personal settings, but KEEP SOME OF THEM
141
+
# - NB: you must manually uncomment the bits you want to keep
142
+
#
143
+
# NB: this *requires* git v1.8.2 or above; you may need to upgrade to latest OS X,
144
+
# or manually install git over the top of the OS X version
145
+
# NB: this is exclusive with OPTION 1 above
146
+
#
147
+
#xcuserdata/**/*
148
+
149
+
# (requires option 2 above): Personal Schemes
150
+
#
151
+
#!xcuserdata/**/xcschemes/*
152
+
153
+
####
154
+
# Xcode 4 workspaces - more detailed
155
+
#
156
+
# Workspaces are important! They are a core feature of Xcode - don't exclude them :)
157
+
#
158
+
# Workspace layout is quite spammy. For reference:
159
+
#
160
+
# /(root)/
161
+
# /(project-name).xcodeproj/
162
+
# project.pbxproj
163
+
# /project.xcworkspace/
164
+
# contents.xcworkspacedata
165
+
# /xcuserdata/
166
+
# /(your name)/xcuserdatad/
167
+
# UserInterfaceState.xcuserstate
168
+
# /xcshareddata/
169
+
# /xcschemes/
170
+
# (shared scheme name).xcscheme
171
+
# /xcuserdata/
172
+
# /(your name)/xcuserdatad/
173
+
# (private scheme).xcscheme
174
+
# xcschememanagement.plist
175
+
#
176
+
#
177
+
178
+
####
179
+
# Xcode 4 - Deprecated classes
180
+
#
181
+
# Allegedly, if you manually "deprecate" your classes, they get moved here.
182
+
#
183
+
# We're using source-control, so this is a "feature" that we do not want!
184
+
185
+
*.moved-aside
186
+
187
+
####
188
+
# OPTIONAL: Some well-known tools that people use side-by-side with Xcode / iOS development
189
+
#
190
+
# NB: I'd rather not include these here, but gitignore's design is weak and doesn't allow
191
+
# modular gitignore: you have to put EVERYTHING in one file.
0 commit comments