- .gitignore containing patterns for all the files that git should
ignore (from *.o, *.d to config.mak, modules.lst a.s.o).
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,28 @@ |
1 |
+# ignore autogenerated files |
|
2 |
+cfg.tab.c |
|
3 |
+cfg.tab.h |
|
4 |
+lex.yy.c |
|
5 |
+librpath.lst |
|
6 |
+makecfg.lst |
|
7 |
+config.mak |
|
8 |
+modules.lst |
|
9 |
+# ignore dependency files |
|
10 |
+*.d |
|
11 |
+# ignore binary files and objects |
|
12 |
+ser |
|
13 |
+*.so |
|
14 |
+*.so.* |
|
15 |
+*.o |
|
16 |
+# archives |
|
17 |
+*.tar.gz |
|
18 |
+*.deb |
|
19 |
+*.rpm |
|
20 |
+# tags |
|
21 |
+tags |
|
22 |
+TAGS |
|
23 |
+# vi swaps |
|
24 |
+.*.swp |
|
25 |
+# various other binaries |
|
26 |
+test/udp_flood |
|
27 |
+utils/gen_ha1/gen_ha1 |
|
28 |
+utils/sercmd/sercmd |