forked from eclipse-omr/omr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jazzignore
97 lines (94 loc) · 2.73 KB
/
.jazzignore
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
###############################################################################
#
# (c) Copyright IBM Corp. 2014
#
# This program and the accompanying materials are made available
# under the terms of the Eclipse Public License v1.0 and
# Apache License v2.0 which accompanies this distribution.
#
# The Eclipse Public License is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# The Apache License v2.0 is available at
# http://www.opensource.org/licenses/apache2.0.php
#
# Contributors:
# Multiple authors (IBM Corp.) - initial implementation and documentation
###############################################################################
### Jazz Ignore 0
# Ignored files and folders will not be committed, but may be modified during
# accept or update.
# - Ignore properties should contain a space separated list of filename patterns.
# - Each pattern is case sensitive and surrounded by braces ('{' and '}').
# - "*" matches zero or more characters.
# - "?" matches a single character.
# - The pattern list may be split across lines by ending the line with a
# backslash and starting the next line with a tab.
# - Patterns in core.ignore prevent matching resources in the same
# directory from being committed.
# - Patterns in core.ignore.recursive matching resources in the current
# directory and all subdirectories from being committed.
# - The default value of core.ignore.recursive is *.class
# - The default value for core.ignore is bin
#
# To ignore shell scripts and hidden files in this subtree:
# e.g: core.ignore.recursive = {*.sh} {\.*}
#
# To ignore resources named 'bin' in the current directory (but allow
# them in any sub directorybelow):
# e.g: core.ignore = {bin}
#
# NOTE: modifying ignore files will not change the ignore status of
# Eclipse derived resources.
core.ignore.recursive= \
{*.class} \
{*.d} \
{*.def} \
{*.dll} \
{*.dylib} \
{*.exe} \
{*.exp} \
{*.lib} \
{*.map} \
{*.pdat} \
{*.pdb} \
{*.res} \
{*.sentinel} \
{*.so} \
{*.so.dbg} \
{autom4te.cache} \
{ut_*.c} \
{ut_*.h} \
{ut_*.inc}
core.ignore= \
{CONFIGURE_SENTINEL_FILE} \
{J9TraceFormat.dat} \
{OMRTestTraceFormat.dat} \
{OMRTraceFormat.dat} \
{SPEC} \
{Testing} \
{bin} \
{config.cache} \
{config.status} \
{hookgen} \
{install-sh} \
{omralgotest} \
{omrgcexample} \
{omrgctest} \
{omrperfgctest} \
{omrporttest} \
{omrrastest} \
{omrsigtest} \
{omrsubscribertest} \
{omrthreadextendedtest} \
{omrthreadtest} \
{omrtraceoptiontest} \
{omrutiltest} \
{omrvmtest} \
{subscriberAgentTrace1.out} \
{subscriberAgentTrace2.out} \
{subscriberAgentWithJ9threadTrace1.out} \
{subscriberAgentWithJ9threadTrace2.out} \
{tracegen} \
{tracemerge} \
{utTrcCounters}