File tree 1 file changed +58
-0
lines changed
1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ # source: https://github.com/github/gitignore/blob/master/C.gitignore
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
+ # Executables
25
+ * .exe
26
+ * .out
27
+ * .app
28
+ * .i * 86
29
+ * .x86_64
30
+ * .hex
31
+
32
+ # Debug files
33
+ * .dSYM /
34
+
35
+ # source: https://github.com/github/gitignore/blob/master/Global/Vim.gitignore
36
+ # swap
37
+ [._ ]* .s [a-w ][a-z ]
38
+ [._ ]s [a-w ][a-z ]
39
+ # persistent undo
40
+ * .un~
41
+ # session
42
+ Session.vim
43
+ # temporary
44
+ .netrwhist
45
+ * ~
46
+
47
+ # source: https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
48
+ * ~
49
+
50
+ # temporary files which can be created if a process still has a handle open of a deleted file
51
+ .fuse_hidden *
52
+
53
+ # KDE directory preferences
54
+ .directory
55
+
56
+ # Linux trash folder which might appear on any partition or disk
57
+ .Trash- *
58
+
You can’t perform that action at this time.
0 commit comments