forked from ComplianceAsCode/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
90 lines (70 loc) · 1.8 KB
/
.gitignore
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
# Files and directories not to track in git tree
# Global files for the entire tree
*.swp
*~
*.pyc
# Ignore dist directories but remember dist/README files
**/dist
!**/dist/README
# Ignore .ini files in the following directories
# */input/oval
# */transforms
# */output
**/input/oval/*.ini
**/transforms/*.ini
**/output/*.ini
# Ignore .xml files in the following directories:
# */output
**/output/*.xml
# Ignore .html files in the following directories:
# */output
**/output/*.html
# Ignore .xhtml files in the following directories:
# */output
**/output/*.xhtml
# Ignore .xslt files in the following directories:
# */output
**/output/*.xslt
# Ignore .pdf files in the following directories:
# */output
#
**/output/*.pdf
# Ignore .spec files in the following directories:
# */output
**/output/*.spec
# Ignore .tar files in the following directories:
# */output
**/output/*.tar
# Ignore .gz files in the following directories:
# */output
**/output/*.gz
# Ignore .csv files in the following directories:
# */output
**/output/*.csv
# Ignore the following directories in */output
**/output/scap-security-guide-*/
**/output/RPMS/
**/output/ansible
**/output/bash
**/output/oval
# Ignore docs tmp directories
docs/Developer_Guide/tmp
docs/SCAP_and_STIG_Workshop/tmp
docs/User_Guide/tmp
# Ignore docs publish directories
docs/Developer_Guide/publish
docs/SCAP_and_STIG_Workshop/publish
docs/User_Guide/publish
# Ignore docs SCAP_Security_Guide directory
docs/html/en-US/SCAP_Security_Guide
# Ignore shared directory .ini files
shared/*.ini
shared/modules/*.ini
shared/oval/*.ini
# Ignore intermediary output XML files in the shared directory
shared/output/*.xml
# Ignore PCI_DSS_v3-1.pdf
shared/transforms/pcidss/PCI_DSS_v3-1.pdf
# Ignore zipfile and tarball dirs
zipfile/
tarball/