Skip to content

Commit aa542b1

Browse files
authored
Create .gitignore
1 parent 47d917a commit aa542b1

File tree

1 file changed

+133
-0
lines changed

1 file changed

+133
-0
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
2+
# Created by https://www.gitignore.io/api/swift,xcode,macos,cocoapods
3+
4+
5+
### CocoaPods ###
6+
## CocoaPods GitIgnore Template
7+
8+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
9+
# - Also handy if you have a large number of dependant pods
10+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
11+
Pods/
12+
*.xcworkspace
13+
!Podfile.lock
14+
APIKey
15+
16+
### macOS ###
17+
# General
18+
.DS_Store
19+
.AppleDouble
20+
.LSOverride
21+
22+
# Icon must end with two \r
23+
Icon
24+
25+
# Thumbnails
26+
._*
27+
28+
# Files that might appear in the root of a volume
29+
.DocumentRevisions-V100
30+
.fseventsd
31+
.Spotlight-V100
32+
.TemporaryItems
33+
.Trashes
34+
.VolumeIcon.icns
35+
.com.apple.timemachine.donotpresent
36+
37+
# Directories potentially created on remote AFP share
38+
.AppleDB
39+
.AppleDesktop
40+
Network Trash Folder
41+
Temporary Items
42+
.apdisk
43+
44+
### Swift ###
45+
# Xcode
46+
#
47+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
48+
49+
## Build generated
50+
build/
51+
DerivedData/
52+
53+
## Various settings
54+
*.pbxuser
55+
!default.pbxuser
56+
*.mode1v3
57+
!default.mode1v3
58+
*.mode2v3
59+
!default.mode2v3
60+
*.perspectivev3
61+
!default.perspectivev3
62+
xcuserdata/
63+
64+
## Other
65+
*.moved-aside
66+
*.xccheckout
67+
*.xcscmblueprint
68+
69+
## Obj-C/Swift specific
70+
*.hmap
71+
*.ipa
72+
*.dSYM.zip
73+
*.dSYM
74+
75+
## Playgrounds
76+
timeline.xctimeline
77+
playground.xcworkspace
78+
79+
# Swift Package Manager
80+
#
81+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
82+
# Packages/
83+
# Package.pins
84+
# Package.resolved
85+
.build/
86+
87+
# CocoaPods
88+
#
89+
# We recommend against adding the Pods directory to your .gitignore. However
90+
# you should judge for yourself, the pros and cons are mentioned at:
91+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
92+
#
93+
# Pods/
94+
95+
# Carthage
96+
#
97+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
98+
# Carthage/Checkouts
99+
100+
Carthage/Build
101+
102+
# fastlane
103+
#
104+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
105+
# screenshots whenever they are needed.
106+
# For more information about the recommended setup visit:
107+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
108+
109+
fastlane/report.xml
110+
fastlane/Preview.html
111+
fastlane/screenshots/**/*.png
112+
fastlane/test_output
113+
114+
### Xcode ###
115+
# Xcode
116+
#
117+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
118+
119+
## User settings
120+
121+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
122+
123+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
124+
125+
### Xcode Patch ###
126+
*.xcodeproj/*
127+
!*.xcodeproj/project.pbxproj
128+
!*.xcodeproj/xcshareddata/
129+
!*.xcworkspace/contents.xcworkspacedata
130+
/*.gcno
131+
132+
133+
# End of https://www.gitignore.io/api/swift,xcode,macos,cocoapods

0 commit comments

Comments
 (0)