-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy path.hgignore.template
60 lines (48 loc) · 994 Bytes
/
.hgignore.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
# Copyright (c) 2020, 2023, Oracle and/or its affiliates.
#
syntax: regexp
# ignore builds artifacts
^(i386|sparc)/.*
^tools/(i386|sparc)/parfait/(CC|cc|g\+\+|gcc|ld)$
^tools/parfait
^tools/pkglint
^tools/time-(amd64|i86|sparcv7|sparcv9).(o|so)$
^tools/.gnupg/crls.d/DIR.txt
^tools/.gnupg/trustdb.gpg
^tools/incorporator
# ignore build dirs
^components/.*/build
# ignore make targets
/\.patched.*$
/\.prep$
/\.prev-version$
/\.unpacked$
\.invalid-hash$
# ignore archives
\.tar.(gz|bz2|xz)$
\.(zip|tgz|jar|gem)$
\.(sig|asc)$
^components/fonts/indic-fonts-core/MalOtf.ttf$
# ignore webrevs at the top level
^[^/]*webrev[^/]*
# ignore hg merge turds
\.bak$
\.chg$
\.orig$
\.rej$
# ignore vim swap and backup files
\.sw[a-z]$
\.~$
# ignore emacs backup files
\.~[0-9]+~$
.*~$
# ignore nohup.out files
nohup\.out$
# ignore compiled python
\.pyc$
# Ignore .nfs files
^\.nfs[0-9A-F][0-9A-F][0-9A-F][0-9A-F]$
/\.nfs[0-9A-F][0-9A-F][0-9A-F][0-9A-F]$
# ignore .hgignore itself
^\.hgignore