.hgignore

branch
TOR_BUG_9701
changeset 8
97036ab72558
child 6
8bccb770b82d
equal deleted inserted replaced
-1:000000000000 0:032ba292eb95
1 # .hgignore - List of filenames hg should ignore
2
3 # Filenames that should be ignored wherever they appear
4 ~$
5 \.py(c|o)$
6 (?i)(^|/)TAGS$
7 (^|/)ID$
8 (^|/)\.DS_Store$
9
10 # Vim swap files.
11 ^\.sw.$
12 .[^/]*\.sw.$
13
14 # User files that may appear at the root
15 ^\.mozconfig
16 ^mozconfig*
17 ^configure$
18 ^config\.cache$
19 ^config\.log$
20 ^\.clang_complete
21 ^mach.ini$
22
23 # Empty marker file that's generated when we check out NSS
24 ^security/manager/\.nss\.checkout$
25
26 # Build directories
27 ^obj
28
29 # Build directories for js shell
30 _DBG\.OBJ/
31 _OPT\.OBJ/
32
33 # SpiderMonkey configury
34 ^js/src/configure$
35 ^js/src/autom4te.cache$
36 # SpiderMonkey test result logs
37 ^js/src/tests/results-.*\.(html|txt)$
38
39 # Java HTML5 parser classes
40 ^parser/html/java/(html|java)parser/
41
42 # SVN directories
43 \.svn/
44
45 # Ignore the files and directory that Eclipse IDE creates
46 \.project$
47 \.cproject$
48 \.settings/
49
50 # Ignore the directory that JetBrains IDEs create
51 \.idea/
52
53 # Python stuff installed at build time.
54 ^python/psutil/.*\.so
55 ^python/psutil/.*\.pyd
56 ^python/psutil/build/
57
58 # Git repositories
59 .git/
60
61 # Ignore chrome.manifest files from the devtools loader
62 ^browser/devtools/chrome.manifest$
63 ^toolkit/devtools/chrome.manifest$

mercurial