Skip to content

Commit 4826a5a

Browse files
committed
add gitignore
1 parent 294a9ae commit 4826a5a

File tree

1 file changed

+132
-0
lines changed

1 file changed

+132
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)