Skip to content

Commit a8d5767

Browse files
Add .gitignore
1 parent ec32f7c commit a8d5767

File tree

1 file changed

+121
-0
lines changed

1 file changed

+121
-0
lines changed

.gitignore

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
### C ###
2+
# Object files
3+
*.o
4+
*.ko
5+
*.obj
6+
*.elf
7+
8+
# Precompiled Headers
9+
*.gch
10+
*.pch
11+
12+
# Libraries
13+
*.lib
14+
*.a
15+
*.la
16+
*.lo
17+
18+
# Shared objects (inc. Windows DLLs)
19+
*.dll
20+
*.so
21+
*.so.*
22+
*.dylib
23+
24+
# Debug files
25+
*.dSYM/
26+
*.su
27+
28+
29+
### OSX ###
30+
*.DS_Store
31+
.AppleDouble
32+
.LSOverride
33+
34+
35+
# Thumbnails
36+
._*
37+
38+
# Files that might appear in the root of a volume
39+
.DocumentRevisions-V100
40+
.fseventsd
41+
.Spotlight-V100
42+
.TemporaryItems
43+
.Trashes
44+
.VolumeIcon.icns
45+
.com.apple.timemachine.donotpresent
46+
47+
# Directories potentially created on remote AFP share
48+
.AppleDB
49+
.AppleDesktop
50+
Network Trash Folder
51+
Temporary Items
52+
.apdisk
53+
54+
## Obj-C/Swift specific
55+
*.hmap
56+
*.ipa
57+
*.dSYM.zip
58+
*.dSYM
59+
60+
## Playgrounds
61+
timeline.xctimeline
62+
playground.xcworkspace
63+
64+
# Swift Package Manager
65+
#
66+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
67+
# Packages/
68+
.build/
69+
70+
# CocoaPods
71+
#
72+
# We recommend against adding the Pods directory to your .gitignore. However
73+
# you should judge for yourself, the pros and cons are mentioned at:
74+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
75+
#
76+
# Pods/
77+
78+
# Carthage
79+
#
80+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
81+
# Carthage/Checkouts
82+
83+
Carthage/Build
84+
85+
# fastlane
86+
#
87+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
88+
# screenshots whenever they are needed.
89+
# For more information about the recommended setup visit:
90+
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
91+
92+
fastlane/report.xml
93+
fastlane/Preview.html
94+
fastlane/screenshots
95+
fastlane/test_output
96+
97+
98+
### Xcode ###
99+
# Xcode
100+
#
101+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
102+
103+
## Build generated
104+
build/
105+
DerivedData/
106+
107+
## Various settings
108+
*.pbxuser
109+
!default.pbxuser
110+
*.mode1v3
111+
!default.mode1v3
112+
*.mode2v3
113+
!default.mode2v3
114+
*.perspectivev3
115+
!default.perspectivev3
116+
xcuserdata/
117+
118+
## Other
119+
*.moved-aside
120+
*.xccheckout
121+
*.xcscmblueprint

0 commit comments

Comments
 (0)