Skip to content
This repository was archived by the owner on Jan 3, 2021. It is now read-only.

Commit ddc92a6

Browse files
committed
Add .gitignore
1 parent f215b4c commit ddc92a6

File tree

1 file changed

+167
-0
lines changed

1 file changed

+167
-0
lines changed

.gitignore

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
#BuildConfig
2+
BuildConfig.plist
3+
4+
# --------------------
5+
# OSX
6+
# https://github.com/github/gitignore/blob/master/Global/OSX.gitignore
7+
8+
.DS_Store
9+
.AppleDouble
10+
.LSOverride
11+
12+
# Icon must end with two \r
13+
Icon
14+
15+
16+
# Thumbnails
17+
._*
18+
19+
# Files that might appear in the root of a volume
20+
.DocumentRevisions-V100
21+
.fseventsd
22+
.Spotlight-V100
23+
.TemporaryItems
24+
.Trashes
25+
.VolumeIcon.icns
26+
27+
# Directories potentially created on remote AFP share
28+
.AppleDB
29+
.AppleDesktop
30+
Network Trash Folder
31+
Temporary Items
32+
.apdisk
33+
34+
35+
# --------------------
36+
# Xcode
37+
# https://github.com/github/gitignore/blob/master/Global/Xcode.gitignore
38+
39+
## Build generated
40+
build/
41+
DerivedData
42+
43+
## Various settings
44+
*.pbxuser
45+
!default.pbxuser
46+
*.mode1v3
47+
!default.mode1v3
48+
*.mode2v3
49+
!default.mode2v3
50+
*.perspectivev3
51+
!default.perspectivev3
52+
xcuserdata
53+
54+
## Other
55+
*.xccheckout
56+
*.moved-aside
57+
*.xcuserstate
58+
59+
60+
# --------------------
61+
# Swift
62+
# https://github.com/github/gitignore/blob/master/Swift.gitignore
63+
64+
## Build generated
65+
build/
66+
DerivedData
67+
68+
## Various settings
69+
*.pbxuser
70+
!default.pbxuser
71+
*.mode1v3
72+
!default.mode1v3
73+
*.mode2v3
74+
!default.mode2v3
75+
*.perspectivev3
76+
!default.perspectivev3
77+
xcuserdata
78+
79+
## Other
80+
*.xccheckout
81+
*.moved-aside
82+
*.xcuserstate
83+
*.xcscmblueprint
84+
85+
## Obj-C/Swift specific
86+
*.hmap
87+
*.ipa
88+
89+
# CocoaPods
90+
#
91+
# We recommend against adding the Pods directory to your .gitignore. However
92+
# you should judge for yourself, the pros and cons are mentioned at:
93+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
94+
#
95+
Pods/
96+
97+
# Carthage
98+
#
99+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
100+
# Carthage/Checkouts
101+
102+
Carthage/Build
103+
104+
# fastlane
105+
#
106+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
107+
# screenshots whenever they are needed.
108+
# For more information about the recommended setup visit:
109+
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
110+
111+
fastlane/report.xml
112+
fastlane/screenshots
113+
114+
115+
# --------------------
116+
# Objective-C
117+
# https://github.com/github/gitignore/blob/master/Objective-C.gitignore
118+
119+
## Build generated
120+
build/
121+
DerivedData
122+
123+
## Various settings
124+
*.pbxuser
125+
!default.pbxuser
126+
*.mode1v3
127+
!default.mode1v3
128+
*.mode2v3
129+
!default.mode2v3
130+
*.perspectivev3
131+
!default.perspectivev3
132+
xcuserdata
133+
134+
## Other
135+
*.xccheckout
136+
*.moved-aside
137+
*.xcuserstate
138+
*.xcscmblueprint
139+
140+
## Obj-C/Swift specific
141+
*.hmap
142+
*.ipa
143+
144+
# CocoaPods
145+
#
146+
# We recommend against adding the Pods directory to your .gitignore. However
147+
# you should judge for yourself, the pros and cons are mentioned at:
148+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
149+
#
150+
# Pods/
151+
152+
# Carthage
153+
#
154+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
155+
# Carthage/Checkouts
156+
157+
Carthage/Build
158+
159+
# fastlane
160+
#
161+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
162+
# screenshots whenever they are needed.
163+
# For more information about the recommended setup visit:
164+
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
165+
166+
fastlane/report.xml
167+
fastlane/screenshots

0 commit comments

Comments
 (0)