From 1ee7f71a184d23dd4ac1a1c24b2c4c200a061872 Mon Sep 17 00:00:00 2001
From: Florian Uhlig <f.uhlig@gsi.de>
Date: Fri, 3 Jul 2020 10:25:21 +0200
Subject: [PATCH] Only ignore toplevel directories

---
 .gitignore | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index 5c46edf8eb..239fcefa5b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,11 @@
-geometry
-input
-parameters
-build
-Dart.cfg
+# exclude top level directories
+# which are taken from other git repositories
+# The / at the beginning is important, otherwise all directories
+# containing the string are ignored 
+/geometry
+/input
+/parameters
+/build
+
+# Comment some single files
+Dart*.cfg
-- 
GitLab