Skip to content

Commit c14c998

Browse files
committedApr 27, 2019
add .gitignore
1 parent 60b2123 commit c14c998

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed
 

‎.gitignore

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
### https://raw.github.com/github/gitignore/7f765e3f2a66a318d8be813cf5fc0cd93cc67ed0/Swift.gitignore
2+
3+
# Xcode
4+
#
5+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
6+
7+
## Build generated
8+
build/
9+
DerivedData/
10+
11+
## Various settings
12+
*.pbxuser
13+
!default.pbxuser
14+
*.mode1v3
15+
!default.mode1v3
16+
*.mode2v3
17+
!default.mode2v3
18+
*.perspectivev3
19+
!default.perspectivev3
20+
xcuserdata/
21+
22+
## Other
23+
*.moved-aside
24+
*.xccheckout
25+
*.xcscmblueprint
26+
27+
## Obj-C/Swift specific
28+
*.hmap
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
## Playgrounds
34+
timeline.xctimeline
35+
playground.xcworkspace
36+
37+
# Swift Package Manager
38+
#
39+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
40+
# Packages/
41+
# Package.pins
42+
# Package.resolved
43+
.build/
44+
45+
# CocoaPods
46+
#
47+
# We recommend against adding the Pods directory to your .gitignore. However
48+
# you should judge for yourself, the pros and cons are mentioned at:
49+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
50+
#
51+
# Pods/
52+
#
53+
# Add this line if you want to avoid checking in source code from the Xcode workspace
54+
# *.xcworkspace
55+
56+
# Carthage
57+
#
58+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
59+
# Carthage/Checkouts
60+
61+
Carthage/Build
62+
63+
# fastlane
64+
#
65+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
66+
# screenshots whenever they are needed.
67+
# For more information about the recommended setup visit:
68+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
69+
70+
fastlane/report.xml
71+
fastlane/Preview.html
72+
fastlane/screenshots/**/*.png
73+
fastlane/test_output
74+
75+
# Code Injection
76+
#
77+
# After new code Injection tools there's a generated folder /iOSInjectionProject
78+
# https://github.com/johnno1962/injectionforxcode
79+
80+
iOSInjectionProject/
81+
82+
83+
### https://raw.github.com/github/gitignore/7f765e3f2a66a318d8be813cf5fc0cd93cc67ed0/Global/Xcode.gitignore
84+
85+
# Xcode
86+
#
87+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
88+
89+
## User settings
90+
xcuserdata/
91+
92+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
93+
*.xcscmblueprint
94+
*.xccheckout
95+
96+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
97+
build/
98+
DerivedData/
99+
*.moved-aside
100+
*.pbxuser
101+
!default.pbxuser
102+
*.mode1v3
103+
!default.mode1v3
104+
*.mode2v3
105+
!default.mode2v3
106+
*.perspectivev3
107+
!default.perspectivev3
108+
109+

0 commit comments

Comments
 (0)