|
1 # .gitignore - List of filenames git should ignore |
|
2 |
|
3 # Filenames that should be ignored wherever they appear |
|
4 *~ |
|
5 *.pyc |
|
6 *.pyo |
|
7 TAGS |
|
8 tags |
|
9 ID |
|
10 .DS_Store* |
|
11 |
|
12 # Vim swap files. |
|
13 .*.sw[a-z] |
|
14 |
|
15 # User files that may appear at the root |
|
16 #/.mozconfig* |
|
17 /mozconfig |
|
18 /configure |
|
19 /config.cache |
|
20 /config.log |
|
21 /.clang_complete |
|
22 /mach.ini |
|
23 |
|
24 # Empty marker file that's generated when we check out NSS |
|
25 security/manager/.nss.checkout |
|
26 |
|
27 # Build directories |
|
28 /obj*/ |
|
29 |
|
30 # Build directories for js shell |
|
31 */_DBG.OBJ/ |
|
32 */_OPT.OBJ/ |
|
33 |
|
34 # SpiderMonkey configury |
|
35 js/src/configure |
|
36 js/src/autom4te.cache |
|
37 # SpiderMonkey test result logs |
|
38 js/src/tests/results-*.html |
|
39 js/src/tests/results-*.txt |
|
40 |
|
41 # Java HTML5 parser classes |
|
42 parser/html/java/htmlparser/ |
|
43 parser/html/java/javaparser/ |
|
44 |
|
45 # Ignore the files and directory that Eclipse IDE creates |
|
46 .project |
|
47 .cproject |
|
48 .settings/ |
|
49 |
|
50 # Python virtualenv artifacts. |
|
51 python/psutil/*.so |
|
52 python/psutil/*.pyd |
|
53 python/psutil/build/ |
|
54 |
|
55 # Ignore chrome.manifest files from the devtools loader |
|
56 browser/devtools/chrome.manifest |
|
57 toolkit/devtools/chrome.manifest |