File tree Expand file tree Collapse file tree 1 file changed +121
-0
lines changed
Expand file tree Collapse file tree 1 file changed +121
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ # Created by https://www.gitignore.io/api/macos,windows,linux,c
3+
4+ # ## C ###
5+ # Prerequisites
6+ * .d
7+
8+ # Object files
9+ * .o
10+ * .ko
11+ * .obj
12+ * .elf
13+
14+ # Linker output
15+ * .ilk
16+ * .map
17+ * .exp
18+
19+ # Precompiled Headers
20+ * .gch
21+ * .pch
22+
23+ # Libraries
24+ * .lib
25+ * .a
26+ * .la
27+ * .lo
28+
29+ # Shared objects (inc. Windows DLLs)
30+ * .dll
31+ * .so
32+ * .so. *
33+ * .dylib
34+
35+ # Executables
36+ * .exe
37+ * .out
38+ * .app
39+ * .i * 86
40+ * .x86_64
41+ * .hex
42+
43+ # Debug files
44+ * .dSYM /
45+ * .su
46+ * .idb
47+ * .pdb
48+
49+ # Kernel Module Compile Results
50+ * .mod *
51+ * .cmd
52+ .tmp_versions /
53+ modules.order
54+ Module.symvers
55+ Mkfile.old
56+ dkms.conf
57+
58+ # ## Linux ###
59+ * ~
60+
61+ # temporary files which can be created if a process still has a handle open of a deleted file
62+ .fuse_hidden *
63+
64+ # KDE directory preferences
65+ .directory
66+
67+ # Linux trash folder which might appear on any partition or disk
68+ .Trash- *
69+
70+ # .nfs files are created when an open file is removed but is still being accessed
71+ .nfs *
72+
73+ # ## macOS ###
74+ * .DS_Store
75+ .AppleDouble
76+ .LSOverride
77+
78+ # Icon must end with two \r
79+ Icon
80+
81+ # Thumbnails
82+ ._ *
83+
84+ # Files that might appear in the root of a volume
85+ .DocumentRevisions-V100
86+ .fseventsd
87+ .Spotlight-V100
88+ .TemporaryItems
89+ .Trashes
90+ .VolumeIcon.icns
91+ .com.apple.timemachine.donotpresent
92+
93+ # Directories potentially created on remote AFP share
94+ .AppleDB
95+ .AppleDesktop
96+ Network Trash Folder
97+ Temporary Items
98+ .apdisk
99+
100+ # ## Windows ###
101+ # Windows thumbnail cache files
102+ Thumbs.db
103+ ehthumbs.db
104+ ehthumbs_vista.db
105+
106+ # Folder config file
107+ Desktop.ini
108+
109+ # Recycle Bin used on file shares
110+ $RECYCLE.BIN /
111+
112+ # Windows Installer files
113+ * .cab
114+ * .msi
115+ * .msm
116+ * .msp
117+
118+ # Windows shortcuts
119+ * .lnk
120+
121+ # End of https://www.gitignore.io/api/macos,windows,linux,c
You can’t perform that action at this time.
0 commit comments