From 99ad7ffd7152a5d30713e5ca46f7d41504d668dd Mon Sep 17 00:00:00 2001 From: Moritz Neeb Date: Sat, 4 Jul 2020 23:01:55 +0200 Subject: [PATCH] fix gitignore: don't ignore certain patterns of subdirectories the project has source code in paths like: tests/src/de/pokerth src/chatcleaner which should not be ignored. To fix this, a slash needs to be added in front of the files that actually should be ignored. While at it: - pokerth_server does not need to be ignored (it's generated in `bin/`, which is ignored already) - ignore some project files (for the case Eclipse is used as IDE) --- .gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6b77edfe..686fbae4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,14 +8,15 @@ Makefile.pokerth_protocol Makefile.pokerth_server Makefile.pokerth_dbofficial bin/ -chatcleaner +/chatcleaner lib/ mocs/ obj/ -pokerth +/pokerth qrc_pokerth.cpp uics/ make.sh gitpush_serverstuff_stable -pokerth_server .vscode/ +.project +.classpath