Skip to content
This repository was archived by the owner on Apr 16, 2025. It is now read-only.

Commit 8e0415b

Browse files
committed
updated ignore file
1 parent 474aaa7 commit 8e0415b

1 file changed

Lines changed: 99 additions & 4 deletions

File tree

.gitignore

Lines changed: 99 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,101 @@
1-
bin
2-
gen
3-
tests/bin
4-
tests/gen
1+
# OS generated files #
2+
######################
3+
.DS_Store
4+
.DS_Store?
5+
._*
6+
.Spotlight-V100
7+
.Trashes
8+
Icon?
9+
ehthumbs.db
510
Thumbs.db
11+
*.swp
12+
*.lock
13+
profile
614

15+
####
16+
# Xcode temporary files that should never be committed
17+
#
18+
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this...
19+
20+
*~.nib
21+
22+
23+
####
24+
# Xcode build files -
25+
#
26+
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"
27+
28+
DerivedData/
29+
30+
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"
31+
32+
build/
33+
34+
35+
#####
36+
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
37+
#
38+
# This is complicated:
39+
#
40+
# SOMETIMES you need to put this file in version control.
41+
# Apple designed it poorly - if you use "custom executables", they are
42+
# saved in this file.
43+
# 99% of projects do NOT use those, so they do NOT want to version control this file.
44+
# ..but if you're in the 1%, comment out the line "*.pbxuser"
45+
46+
*.pbxuser
47+
*.mode1v3
48+
*.mode2v3
49+
*.perspectivev3
50+
# NB: also, whitelist the default ones, some projects need to use these
51+
!default.pbxuser
52+
!default.mode1v3
53+
!default.mode2v3
54+
!default.perspectivev3
55+
56+
57+
####
58+
# Xcode 4 - semi-personal settings, often included in workspaces
59+
#
60+
# You can safely ignore the xcuserdata files - but do NOT ignore the files next to them
61+
#
62+
63+
xcuserdata
64+
65+
66+
####
67+
# XCode 4 workspaces - more detailed
68+
#
69+
# Workspaces are important! They are a core feature of Xcode - don't exclude them :)
70+
#
71+
# Workspace layout is quite spammy. For reference:
72+
#
73+
# (root)/
74+
# (project-name).xcodeproj/
75+
# project.pbxproj
76+
# project.xcworkspace/
77+
# contents.xcworkspacedata
78+
# xcuserdata/
79+
# (your name)/xcuserdatad/
80+
# xcuserdata/
81+
# (your name)/xcuserdatad/
82+
#
83+
#
84+
#
85+
# Xcode 4 workspaces - SHARED
86+
#
87+
# This is UNDOCUMENTED (google: "developer.apple.com xcshareddata" - 0 results
88+
# But if you're going to kill personal workspaces, at least keep the shared ones...
89+
#
90+
#
91+
!xcshareddata
92+
93+
94+
####
95+
# Xcode 4 - Deprecated classes
96+
#
97+
# Allegedly, if you manually "deprecate" your classes, they get moved here.
98+
#
99+
# We're using source-control, so this is a "feature" that we do not want!
100+
101+
*.moved-aside

0 commit comments

Comments
 (0)