Skip to content

Commit dc632ef

Browse files
committed
Add .gitignore file
1 parent 132d9e6 commit dc632ef

File tree

1 file changed

+118
-3
lines changed

1 file changed

+118
-3
lines changed

.gitignore

+118-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
reated by https://www.gitignore.io/api/xcode,objective-c,swift,osx
2+
3+
### Xcode ###
14
# Xcode
25
#
36
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
47

58
## Build generated
69
build/
7-
DerivedData
10+
DerivedData/
811

912
## Various settings
1013
*.pbxuser
@@ -15,14 +18,95 @@ DerivedData
1518
!default.mode2v3
1619
*.perspectivev3
1720
!default.perspectivev3
18-
xcuserdata
21+
xcuserdata/
1922

2023
## Other
24+
*.moved-aside
2125
*.xccheckout
26+
*.xcscmblueprint
27+
28+
29+
### Objective-C ###
30+
# Xcode
31+
#
32+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
33+
34+
## Build generated
35+
build/
36+
DerivedData/
37+
38+
## Various settings
39+
*.pbxuser
40+
!default.pbxuser
41+
*.mode1v3
42+
!default.mode1v3
43+
*.mode2v3
44+
!default.mode2v3
45+
*.perspectivev3
46+
!default.perspectivev3
47+
xcuserdata/
48+
49+
## Other
2250
*.moved-aside
2351
*.xcuserstate
52+
53+
## Obj-C/Swift specific
54+
*.hmap
55+
*.ipa
56+
57+
# CocoaPods
58+
#
59+
# We recommend against adding the Pods directory to your .gitignore. However
60+
# you should judge for yourself, the pros and cons are mentioned at:
61+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
62+
#
63+
# Pods/
64+
65+
# Carthage
66+
#
67+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
68+
# Carthage/Checkouts
69+
70+
Carthage
71+
72+
# fastlane
73+
#
74+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
75+
# screenshots whenever they are needed.
76+
# For more information about the recommended setup visit:
77+
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
78+
79+
fastlane/report.xml
80+
fastlane/screenshots
81+
82+
### Objective-C Patch ###
2483
*.xcscmblueprint
2584

85+
86+
### Swift ###
87+
# Xcode
88+
#
89+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
90+
91+
## Build generated
92+
build/
93+
DerivedData/
94+
95+
## Various settings
96+
*.pbxuser
97+
!default.pbxuser
98+
*.mode1v3
99+
!default.mode1v3
100+
*.mode2v3
101+
!default.mode2v3
102+
*.perspectivev3
103+
!default.perspectivev3
104+
xcuserdata/
105+
106+
## Other
107+
*.moved-aside
108+
*.xcuserstate
109+
26110
## Obj-C/Swift specific
27111
*.hmap
28112
*.ipa
@@ -50,7 +134,7 @@ playground.xcworkspace
50134
# Add this line if you want to avoid checking in source code from Carthage dependencies.
51135
# Carthage/Checkouts
52136

53-
Carthage/Build
137+
Carthage
54138

55139
# fastlane
56140
#
@@ -60,4 +144,35 @@ Carthage/Build
60144
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
61145

62146
fastlane/report.xml
147+
fastlane/Preview.html
63148
fastlane/screenshots
149+
fastlane/test_output
150+
151+
152+
### OSX ###
153+
.DS_Store
154+
.AppleDouble
155+
.LSOverride
156+
157+
# Icon must end with two \r
158+
Icon
159+
160+
161+
# Thumbnails
162+
._*
163+
164+
# Files that might appear in the root of a volume
165+
.DocumentRevisions-V100
166+
.fseventsd
167+
.Spotlight-V100
168+
.TemporaryItems
169+
.Trashes
170+
.VolumeIcon.icns
171+
172+
# Directories potentially created on remote AFP share
173+
.AppleDB
174+
.AppleDesktop
175+
Network Trash Folder
176+
Temporary Items
177+
.apdisk
178+

0 commit comments

Comments
 (0)