Skip to content

Commit 2032f87

Browse files
committed
Creating gitignore file
1 parent ea4f52a commit 2032f87

File tree

1 file changed

+177
-0
lines changed

1 file changed

+177
-0
lines changed

.gitignore

+177
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
2+
# Created by https://www.gitignore.io/api/swift,xcode,macos,objective-c
3+
4+
### macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
# Thumbnails
14+
._*
15+
16+
# Files that might appear in the root of a volume
17+
.DocumentRevisions-V100
18+
.fseventsd
19+
.Spotlight-V100
20+
.TemporaryItems
21+
.Trashes
22+
.VolumeIcon.icns
23+
.com.apple.timemachine.donotpresent
24+
25+
# Directories potentially created on remote AFP share
26+
.AppleDB
27+
.AppleDesktop
28+
Network Trash Folder
29+
Temporary Items
30+
.apdisk
31+
32+
### Objective-C ###
33+
# Xcode
34+
#
35+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
36+
37+
## Build generated
38+
build/
39+
DerivedData/
40+
41+
## Various settings
42+
*.pbxuser
43+
!default.pbxuser
44+
*.mode1v3
45+
!default.mode1v3
46+
*.mode2v3
47+
!default.mode2v3
48+
*.perspectivev3
49+
!default.perspectivev3
50+
xcuserdata/
51+
52+
## Other
53+
*.moved-aside
54+
*.xccheckout
55+
*.xcscmblueprint
56+
57+
## Obj-C/Swift specific
58+
*.hmap
59+
*.ipa
60+
*.dSYM.zip
61+
*.dSYM
62+
63+
# CocoaPods
64+
#
65+
# We recommend against adding the Pods directory to your .gitignore. However
66+
# you should judge for yourself, the pros and cons are mentioned at:
67+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
68+
#
69+
# Pods/
70+
#
71+
# Add this line if you want to avoid checking in source code from the Xcode workspace
72+
# *.xcworkspace
73+
74+
# Carthage
75+
#
76+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
77+
# Carthage/Checkouts
78+
79+
Carthage/Build
80+
81+
# fastlane
82+
#
83+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
84+
# screenshots whenever they are needed.
85+
# For more information about the recommended setup visit:
86+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
87+
88+
fastlane/report.xml
89+
fastlane/Preview.html
90+
fastlane/screenshots/**/*.png
91+
fastlane/test_output
92+
93+
# Code Injection
94+
#
95+
# After new code Injection tools there's a generated folder /iOSInjectionProject
96+
# https://github.com/johnno1962/injectionforxcode
97+
98+
iOSInjectionProject/
99+
100+
### Objective-C Patch ###
101+
102+
### Swift ###
103+
# Xcode
104+
#
105+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
106+
107+
## Build generated
108+
109+
## Various settings
110+
111+
## Other
112+
113+
## Obj-C/Swift specific
114+
115+
## Playgrounds
116+
timeline.xctimeline
117+
playground.xcworkspace
118+
119+
# Swift Package Manager
120+
#
121+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
122+
# Packages/
123+
# Package.pins
124+
# Package.resolved
125+
.build/
126+
127+
# CocoaPods
128+
#
129+
# We recommend against adding the Pods directory to your .gitignore. However
130+
# you should judge for yourself, the pros and cons are mentioned at:
131+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
132+
#
133+
# Pods/
134+
#
135+
# Add this line if you want to avoid checking in source code from the Xcode workspace
136+
# *.xcworkspace
137+
138+
# Carthage
139+
#
140+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
141+
# Carthage/Checkouts
142+
143+
144+
# fastlane
145+
#
146+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
147+
# screenshots whenever they are needed.
148+
# For more information about the recommended setup visit:
149+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
150+
151+
152+
# Code Injection
153+
#
154+
# After new code Injection tools there's a generated folder /iOSInjectionProject
155+
# https://github.com/johnno1962/injectionforxcode
156+
157+
158+
### Xcode ###
159+
# Xcode
160+
#
161+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
162+
163+
## User settings
164+
165+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
166+
167+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
168+
169+
### Xcode Patch ###
170+
*.xcodeproj/*
171+
!*.xcodeproj/project.pbxproj
172+
!*.xcodeproj/xcshareddata/
173+
!*.xcworkspace/contents.xcworkspacedata
174+
/*.gcno
175+
176+
177+
# End of https://www.gitignore.io/api/swift,xcode,macos,objective-c

0 commit comments

Comments
 (0)