Ignore some fetch failures
[openssl.git] / .gitignore
1 # Ignore editor artefacts
2 /.dir-locals.el
3
4 # Top level excludes
5 /Makefile
6 /MINFO
7 /TABLE
8 /*.pc
9 /rehash.time
10 /inc.*
11 /makefile.*
12 /out.*
13 /tmp.*
14 /configdata.pm
15
16 # Links under apps
17 /apps/CA.pl
18 /apps/tsget
19 /apps/tsget.pl
20 /apps/md4.c
21
22 # Auto generated headers
23 /crypto/buildinf.h
24 /include/crypto/*_conf.h
25 /include/openssl/configuration.h
26 /include/openssl/opensslv.h
27
28 # Auto generated doc files
29 doc/man1/openssl-*.pod
30
31 # error code files
32 /crypto/err/openssl.txt.old
33 /engines/e_afalg.txt.old
34 /engines/e_capi.txt.old
35 /engines/e_dasync.txt.old
36 /engines/e_ossltest.txt.old
37
38 # Executables
39 /apps/openssl
40 /test/sha256t
41 /test/sha512t
42 /test/gost2814789t
43 /test/ssltest_old
44 /test/*test
45 /test/fips_aesavs
46 /test/fips_desmovs
47 /test/fips_dhvs
48 /test/fips_drbgvs
49 /test/fips_dssvs
50 /test/fips_ecdhvs
51 /test/fips_ecdsavs
52 /test/fips_rngvs
53 /test/fips_test_suite
54 /test/ssltest_old
55 /test/x509aux
56 /test/v3ext
57 /test/versions
58 /test/ossl_shim/ossl_shim
59 /test/rsa_complex
60 /test/confdump
61 /test/bio_prefix_text
62 # Other generated files in test/
63 /test/provider_internal_test.cnf
64 /test/fipsinstall.cnf
65 /providers/fipsinstall.cnf
66
67 # Certain files that get created by tests on the fly
68 /test-runs
69 /test/buildtest_*
70
71 # Fuzz stuff.
72 # Anything without an extension is an executable on Unix, so we keep files
73 # with extensions.  And we keep the corpora subddir versioned as well.
74 # Anything more generic with extensions that should be ignored will be taken
75 # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
76 /fuzz/*
77 !/fuzz/README*
78 !/fuzz/corpora
79 !/fuzz/*.*
80
81 # Misc auto generated files
82 /doc/man7/openssl_user_macros.pod
83 /tools/c_rehash
84 /tools/c_rehash.pl
85 /util/shlib_wrap.sh
86 /tags
87 /TAGS
88 *.map
89 *.ld
90 /apps/progs.c
91 /apps/progs.h
92
93 # Windows (legacy)
94 /tmp32
95 /tmp32.dbg
96 /tmp32dll
97 /tmp32dll.dbg
98 /out32
99 /out32.dbg
100 /out32dll
101 /out32dll.dbg
102 /inc32
103 /MINFO
104 /ms/bcb.mak
105 /ms/libeay32.def
106 /ms/nt.mak
107 /ms/ntdll.mak
108 /ms/ssleay32.def
109 /ms/version32.rc
110
111 # Files created on other branches that are not held in git, and are not
112 # needed on this branch
113 /include/openssl/asn1_mac.h
114 /include/openssl/des_old.h
115 /include/openssl/fips.h
116 /include/openssl/fips_rand.h
117 /include/openssl/krb5_asn.h
118 /include/openssl/kssl.h
119 /include/openssl/pq_compat.h
120 /include/openssl/ssl23.h
121 /include/openssl/tmdiff.h
122 /include/openssl/ui_compat.h
123 /test/fips_aesavs.c
124 /test/fips_desmovs.c
125 /test/fips_dsatest.c
126 /test/fips_dssvs.c
127 /test/fips_hmactest.c
128 /test/fips_randtest.c
129 /test/fips_rngvs.c
130 /test/fips_rsagtest.c
131 /test/fips_rsastest.c
132 /test/fips_rsavtest.c
133 /test/fips_shatest.c
134 /test/fips_test_suite.c
135 /test/shatest.c
136
137 # Generated docs directories
138 /doc/html
139 /doc/man
140
141 ##### Generic patterns
142 # Auto generated assembly language source files
143 *.s
144 !/crypto/*/asm/*.s
145 /crypto/arm*.S
146 /crypto/*/*.S
147 *.asm
148 !/crypto/*/asm/*.asm
149
150 # Object files
151 *.o
152 *.obj
153
154 # editor artefacts
155 *.swp
156 .#*
157 \#*#
158 *~
159
160 # Certificate symbolic links
161 *.0
162
163 # All kinds of libraries and executables
164 *.a
165 *.so
166 *.so.*
167 *.dylib
168 *.dylib.*
169 *.dll
170 *.dll.*
171 *.exe
172 *.pyc
173 *.exp
174 *.lib
175 *.pdb
176 *.ilk
177 *.def
178 *.rc
179 *.res
180
181 # Misc generated stuff
182 Makefile.save
183 /crypto/**/lib
184 /engines/**/lib
185 /ssl/**/lib
186 *.bak
187 cscope.*
188 *.d
189 *.d.tmp
190 pod2htmd.tmp
191
192 # Windows manifest files
193 *.manifest
194 doc-nits