Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bbb90cf

Browse files
committedDec 13, 2021
add gitignore
0 parents  commit bbb90cf

File tree

1 file changed

+142
-0
lines changed

1 file changed

+142
-0
lines changed
 

‎.gitignore

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/macos,xcode,swift,cocoapods
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,xcode,swift,cocoapods
3+
4+
### CocoaPods ###
5+
## CocoaPods GitIgnore Template
6+
7+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
8+
# - Also handy if you have a large number of dependant pods
9+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
10+
Pods/
11+
12+
### macOS ###
13+
# General
14+
.DS_Store
15+
.AppleDouble
16+
.LSOverride
17+
18+
# Icon must end with two \r
19+
Icon
20+
21+
22+
# Thumbnails
23+
._*
24+
25+
# Files that might appear in the root of a volume
26+
.DocumentRevisions-V100
27+
.fseventsd
28+
.Spotlight-V100
29+
.TemporaryItems
30+
.Trashes
31+
.VolumeIcon.icns
32+
.com.apple.timemachine.donotpresent
33+
34+
# Directories potentially created on remote AFP share
35+
.AppleDB
36+
.AppleDesktop
37+
Network Trash Folder
38+
Temporary Items
39+
.apdisk
40+
41+
### Swift ###
42+
# Xcode
43+
#
44+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
45+
46+
## User settings
47+
xcuserdata/
48+
49+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
50+
*.xcscmblueprint
51+
*.xccheckout
52+
53+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
54+
build/
55+
DerivedData/
56+
*.moved-aside
57+
*.pbxuser
58+
!default.pbxuser
59+
*.mode1v3
60+
!default.mode1v3
61+
*.mode2v3
62+
!default.mode2v3
63+
*.perspectivev3
64+
!default.perspectivev3
65+
66+
## Obj-C/Swift specific
67+
*.hmap
68+
69+
## App packaging
70+
*.ipa
71+
*.dSYM.zip
72+
*.dSYM
73+
74+
## Playgrounds
75+
timeline.xctimeline
76+
playground.xcworkspace
77+
78+
# Swift Package Manager
79+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
80+
# Packages/
81+
# Package.pins
82+
# Package.resolved
83+
# *.xcodeproj
84+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
85+
# hence it is not needed unless you have added a package configuration file to your project
86+
# .swiftpm
87+
88+
.build/
89+
90+
# CocoaPods
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+
# Pods/
95+
# Add this line if you want to avoid checking in source code from the Xcode workspace
96+
# *.xcworkspace
97+
98+
# Carthage
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+
# Accio dependency management
105+
Dependencies/
106+
.accio/
107+
108+
# fastlane
109+
# It is recommended to not store the screenshots in the git repo.
110+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
111+
# For more information about the recommended setup visit:
112+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
113+
114+
fastlane/report.xml
115+
fastlane/Preview.html
116+
fastlane/screenshots/**/*.png
117+
fastlane/test_output
118+
119+
# Code Injection
120+
# After new code Injection tools there's a generated folder /iOSInjectionProject
121+
# https://github.com/johnno1962/injectionforxcode
122+
123+
iOSInjectionProject/
124+
125+
### Xcode ###
126+
# Xcode
127+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
128+
129+
130+
131+
132+
## Gcc Patch
133+
/*.gcno
134+
135+
### Xcode Patch ###
136+
*.xcodeproj/*
137+
!*.xcodeproj/project.pbxproj
138+
!*.xcodeproj/xcshareddata/
139+
!*.xcworkspace/contents.xcworkspacedata
140+
**/xcshareddata/WorkspaceSettings.xcsettings
141+
142+
# End of https://www.toptal.com/developers/gitignore/api/macos,xcode,swift,cocoapods

0 commit comments

Comments
 (0)
Please sign in to comment.