From 1853a777f7dcd0d0a0680d579eb6d459f8c63a05 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Wed, 22 Apr 2020 20:48:52 +0200 Subject: [PATCH] keep all the .gitignore in one place I always find it confusing when the list is spread over multiple files. This reverts 063fc04af12d780d37be7d0320c20789d98de35b that made all the content of /data/ not ignored. Signed-off-by: Mattia Rizzolo --- .gitignore | 2 ++ data/logs/.gitignore | 1 - data/logs/.keep | 0 3 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 data/logs/.gitignore create mode 100644 data/logs/.keep diff --git a/.gitignore b/.gitignore index 1be269b..231c324 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ nm2/local_settings.py *.gz /.coverage /htmlcov +# there is a .keep file in there to keep /data/logs/ in the repository +/data diff --git a/data/logs/.gitignore b/data/logs/.gitignore deleted file mode 100644 index 890cdd8..0000000 --- a/data/logs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/*.log* diff --git a/data/logs/.keep b/data/logs/.keep new file mode 100644 index 0000000..e69de29 -- GitLab