From 5263d9d6f04540acf06d5dfa36532779b7469237 Mon Sep 17 00:00:00 2001 From: Hans Raaf Date: Sat, 21 May 2016 13:46:43 +0200 Subject: [PATCH] Added `.*/`, `~*` and `*.log` to GIT ignore list. Using differend IDEs for the Nim compiler I am constantly running into the problem that my global .gitignore is not working for the Nim directory. This is caused by the `*` / `!*.*` like rules, which reset all other rules. So I thought a bit about a sensible filtering of common IDE special files and added that to the .gitignore. --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 1971a23cb0..e4cec0ef6c 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ nimcache/ *.dylib *.zip *.iss +*.log mapping.txt tags @@ -42,3 +43,7 @@ xcuserdata/ /testresults.json testament.db /csources + +# Private directories and files (IDEs) +.*/ +~*