- [PATCH 05/13] BUG/MINOR: http/sample: gmtime/localtime can fail - [PATCH 06/13] DOC: typo in 'redirect', 302 code meaning - [PATCH 07/13] DOC: mention that %ms is left-padded with zeroes. - [PATCH 08/13] CLEANUP: .gitignore: ignore more test files - [PATCH 09/13] CLEANUP: .gitignore: finally ignore everything but what - [PATCH 10/13] MEDIUM: config: emit a warning on a frontend without - [PATCH 11/13] BUG/MEDIUM: counters: ensure that src_{inc,clr}_gpc0 - [PATCH 12/13] DOC: ssl: missing LF - [PATCH 13/13] DOC: fix example of http-request using Signed-off-by: heil <heil@terminal-consulting.de>
44 lines
956 B
Diff
44 lines
956 B
Diff
From 5e077624951a65e6aae381c7213fc54984768dd4 Mon Sep 17 00:00:00 2001
|
|
From: Willy Tarreau <w@1wt.eu>
|
|
Date: Tue, 11 Aug 2015 11:21:47 +0200
|
|
Subject: [PATCH 09/13] CLEANUP: .gitignore: finally ignore everything but what
|
|
is known.
|
|
|
|
Still too many files remain, it's easier to block everything but
|
|
what we know.
|
|
(cherry picked from commit d71f1766bdbb041f80394662b0d293f033f93005)
|
|
---
|
|
.gitignore | 20 ++++++++++++++++++++
|
|
1 file changed, 20 insertions(+)
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
index f6ccd0e..1953ba3 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -45,3 +45,23 @@ tests/test_hashes
|
|
/*.sh
|
|
/bug*
|
|
/TAGS
|
|
+# Below we forbid everything and only allow what we know, that's much easier
|
|
+# than blocking about 500 different test files and bug report outputs.
|
|
+/.*
|
|
+/*
|
|
+!/.gitignore
|
|
+!/CHANGELOG
|
|
+!/LICENSE
|
|
+!/Makefile
|
|
+!/README
|
|
+!/ROADMAP
|
|
+!/SUBVERS
|
|
+!/VERDATE
|
|
+!/VERSION
|
|
+!/contrib
|
|
+!/doc
|
|
+!/ebtree
|
|
+!/examples
|
|
+!/include
|
|
+!/src
|
|
+!/tests
|
|
--
|
|
2.4.6
|
|
|