... | ... |
@@ -19,6 +19,7 @@ modules.lst |
19 | 19 |
*.a |
20 | 20 |
# archives |
21 | 21 |
*.tar.gz |
22 |
+*.tar.xz |
|
22 | 23 |
*.deb |
23 | 24 |
*.rpm |
24 | 25 |
# tags |
... | ... |
@@ -44,5 +45,8 @@ misc/tools/protoshoot/protoshoot |
44 | 45 |
# MacOSX auto-generated files |
45 | 46 |
libiname.lst |
46 | 47 |
*.dylib |
48 |
+.DS_Store |
|
47 | 49 |
# man pages |
48 | 50 |
*.7 |
51 |
+# vscode tmp files |
|
52 |
+.vscode |
- kamcmd binary and second vi swap file
- some directories containing the binary name (e.g., kamailio like in
utils/kamctl/dbtext/kamailio/...) in path were ignored. Updated
.gitignore to use /kamailio and /ser which according to manual should
match on the root folder of GIT tree
... | ... |
@@ -10,8 +10,8 @@ modules.lst |
10 | 10 |
# ignore dependency files |
11 | 11 |
*.d |
12 | 12 |
# ignore binary files and objects |
13 |
-ser |
|
14 |
-kamailio |
|
13 |
+/ser |
|
14 |
+/kamailio |
|
15 | 15 |
*.so |
16 | 16 |
*.so.* |
17 | 17 |
*.o |
... | ... |
@@ -38,4 +38,4 @@ utils/pdbt/pdbt |
38 | 38 |
libiname.lst |
39 | 39 |
*.dylib |
40 | 40 |
# man pages |
41 |
-*.7 |
|
42 | 41 |
\ No newline at end of file |
42 |
+*.7 |
... | ... |
@@ -28,6 +28,8 @@ TAGS |
28 | 28 |
test/udp_flood |
29 | 29 |
utils/gen_ha1/gen_ha1 |
30 | 30 |
utils/sercmd/sercmd |
31 |
+utils/pdbt/pdb_server |
|
32 |
+utils/pdbt/pdbt |
|
31 | 33 |
# Emacs backup files |
32 | 34 |
*~ |
33 | 35 |
# Emacs file locks |
... | ... |
@@ -35,4 +37,5 @@ utils/sercmd/sercmd |
35 | 37 |
# MacOSX auto-generated files |
36 | 38 |
libiname.lst |
37 | 39 |
*.dylib |
40 |
+# man pages |
|
38 | 41 |
*.7 |
39 | 42 |
\ No newline at end of file |
Files with *~ suffix are created by emacs to hold a backup copy of the
file being edited.
- .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 |