Skip to content

Commit 2cf759d

Browse files
Add gitignore
1 parent aaf056b commit 2cf759d

File tree

1 file changed

+111
-0
lines changed

1 file changed

+111
-0
lines changed

.gitignore

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
## Build generated
2+
build/
3+
DerivedData/
4+
5+
## Various settings
6+
*.pbxuser
7+
!default.pbxuser
8+
!default.perspectivev3
9+
xcuserdata/
10+
11+
## Other
12+
*.moved-aside
13+
*.xccheckout
14+
*.xcscmblueprint
15+
16+
## Obj-C/Swift specific
17+
*.hmap
18+
*.ipa
19+
*.dSYM.zip
20+
*.dSYM
21+
*.DS_Store
22+
23+
# fastlane
24+
#
25+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
26+
# screenshots whenever they are needed.
27+
# For more information about the recommended setup visit:
28+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
29+
30+
fastlane/report.xml
31+
fastlane/Preview.html
32+
fastlane/screenshots
33+
fastlane/test_output
34+
35+
# Code Injection
36+
#
37+
# After new code Injection tools there's a generated folder /iOSInjectionProject
38+
# https://github.com/johnno1962/injectionforxcode
39+
40+
iOSInjectionProject/
41+
42+
### Objective-C Patch ###
43+
44+
### Objective-C.Carthage Stack ###
45+
# Carthage
46+
#
47+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
48+
# Carthage/Checkouts
49+
50+
Carthage/Build
51+
52+
### Objective-C.CocoaPods Stack ###
53+
## CocoaPods GitIgnore Template
54+
55+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
56+
# - Also handy if you have a lage number of dependant pods
57+
#
58+
- AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK
59+
Pods/
60+
61+
### Swift ###
62+
# Xcode
63+
#
64+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
65+
66+
## Build generated
67+
68+
## Various settings
69+
70+
## Other
71+
72+
## Obj-C/Swift specific
73+
74+
## Playgrounds
75+
timeline.xctimeline
76+
playground.xcworkspace
77+
78+
# Swift Package Manager
79+
#
80+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
81+
# Packages/
82+
# Package.pins
83+
.build/
84+
85+
# CocoaPods - Refactored to standalone file
86+
87+
# Carthage - Refactored to standalone file
88+
89+
# fastlane
90+
#
91+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
92+
# screenshots whenever they are needed.
93+
# For more information about the recommended setup visit:
94+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
95+
96+
97+
### Swift.Carthage Stack ###
98+
# Carthage
99+
#
100+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
101+
# Carthage/Checkouts
102+
103+
104+
### Swift.CocoaPods Stack ###
105+
## CocoaPods GitIgnore Template
106+
107+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
108+
# - Also handy if you have a lage number of dependant pods
109+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK FILE
110+
111+
# End of https://www.gitignore.io/api/swift,objective-c

0 commit comments

Comments
 (0)