Skip to content

Commit b935b76

Browse files
author
lauli
authored
Update .gitignore
1 parent 944105b commit b935b76

File tree

1 file changed

+124
-15
lines changed

1 file changed

+124
-15
lines changed

.gitignore

Lines changed: 124 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
2+
# Created by https://www.gitignore.io/api/swift,osx,objective-c,xcode,microsoftoffice
3+
4+
### Swift ###
15
# Xcode
26
#
37
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
48

59
## Build generated
610
build/
711
DerivedData/
12+
Implementation/SourceCode/Abomate/
813

914
## Various settings
1015
*.pbxuser
@@ -19,14 +24,11 @@ xcuserdata/
1924

2025
## Other
2126
*.moved-aside
22-
*.xccheckout
23-
*.xcscmblueprint
27+
*.xcuserstate
2428

2529
## Obj-C/Swift specific
2630
*.hmap
2731
*.ipa
28-
*.dSYM.zip
29-
*.dSYM
3032

3133
## Playgrounds
3234
timeline.xctimeline
@@ -36,16 +38,84 @@ playground.xcworkspace
3638
#
3739
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
3840
# Packages/
39-
# Package.pins
4041
.build/
4142

43+
# fastlane
44+
#
45+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46+
# screenshots whenever they are needed.
47+
# For more information about the recommended setup visit:
48+
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
49+
50+
fastlane/report.xml
51+
fastlane/Preview.html
52+
fastlane/screenshots
53+
fastlane/test_output
54+
55+
56+
### OSX ###
57+
.DS_Store
58+
.AppleDouble
59+
.LSOverride
60+
61+
# Icon must end with two \r
62+
Icon
63+
64+
65+
# Thumbnails
66+
._*
67+
68+
# Files that might appear in the root of a volume
69+
.DocumentRevisions-V100
70+
.fseventsd
71+
.Spotlight-V100
72+
.TemporaryItems
73+
.Trashes
74+
.VolumeIcon.icns
75+
76+
# Directories potentially created on remote AFP share
77+
.AppleDB
78+
.AppleDesktop
79+
Network Trash Folder
80+
Temporary Items
81+
.apdisk
82+
83+
84+
### Objective-C ###
85+
# Xcode
86+
#
87+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
88+
89+
## Build generated
90+
build/
91+
DerivedData/
92+
93+
## Various settings
94+
*.pbxuser
95+
!default.pbxuser
96+
*.mode1v3
97+
!default.mode1v3
98+
*.mode2v3
99+
!default.mode2v3
100+
*.perspectivev3
101+
!default.perspectivev3
102+
xcuserdata/
103+
104+
## Other
105+
*.moved-aside
106+
*.xcuserstate
107+
108+
## Obj-C/Swift specific
109+
*.hmap
110+
*.ipa
111+
42112
# CocoaPods
43113
#
44114
# We recommend against adding the Pods directory to your .gitignore. However
45115
# you should judge for yourself, the pros and cons are mentioned at:
46116
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
47117
#
48-
# Pods/
118+
Pods/
49119

50120
# Carthage
51121
#
@@ -54,14 +124,53 @@ playground.xcworkspace
54124

55125
Carthage/Build
56126

57-
# fastlane
127+
### Objective-C Patch ###
128+
*.xcscmblueprint
129+
130+
### Xcode ###
131+
# Xcode
58132
#
59-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
60-
# screenshots whenever they are needed.
61-
# For more information about the recommended setup visit:
62-
# https://docs.fastlane.tools/best-practices/source-control/#source-control
133+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
63134

64-
fastlane/report.xml
65-
fastlane/Preview.html
66-
fastlane/screenshots
67-
fastlane/test_output
135+
## Build generated
136+
build/
137+
DerivedData/
138+
139+
## Various settings
140+
*.pbxuser
141+
!default.pbxuser
142+
*.mode1v3
143+
!default.mode1v3
144+
*.mode2v3
145+
!default.mode2v3
146+
*.perspectivev3
147+
!default.perspectivev3
148+
xcuserdata/
149+
150+
## Other
151+
*.moved-aside
152+
*.xccheckout
153+
*.xcscmblueprint
154+
155+
156+
### MicrosoftOffice ###
157+
*.tmp
158+
159+
# Word temporary
160+
~$*.doc*
161+
162+
# Excel temporary
163+
~$*.xls*
164+
165+
# Excel Backup File
166+
*.xlk
167+
168+
# PowerPoint temporary
169+
~$*.ppt*
170+
171+
### Xcode Patch ###
172+
*.xcodeproj/*
173+
!*.xcodeproj/project.pbxproj
174+
!*.xcodeproj/xcshareddata/
175+
!*.xcworkspace/contents.xcworkspacedata
176+
/*.gcno

0 commit comments

Comments
 (0)