From 0ad07e5f18c3bf1d2835a9d2e0d5d894698e6e50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20B=C3=B6ckerman?= Date: Sat, 18 May 2019 20:51:50 +0300 Subject: [PATCH] Ignore ruuvi-*.properties only in root folder ruuvi-collector.properties and ruuvi-names.properties files in the root folder should be ignored as they are user configuration files created based on the *.properties.example files. In January 2019 in commit f452981 files with those same names were added under src/test/resources/ directory to be used as part of the tests. However, the .gitignore file was not altered back then to reflect that those new files should not be ignored by git. This commit updates the .gitignore to only ignore ruuvi-collector.properties and ruuvi-names.properties files in the root directory of the repository. --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 90b4b5d..a2816d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ target/ -ruuvi-collector.properties -ruuvi-names.properties +/ruuvi-collector.properties +/ruuvi-names.properties .idea/ *.iml .settings/org.eclipse.m2e.core.prefs