diff options
author | Hans Raaf <hara@oderwat.de> | 2016-05-21 13:46:43 +0200 |
---|---|---|
committer | Hans Raaf <hara@oderwat.de> | 2016-05-21 14:03:43 +0200 |
commit | 5263d9d6f04540acf06d5dfa36532779b7469237 (patch) | |
tree | e3ac98def3831a0eb2a934795b958baba25bae49 | |
parent | 268f25225abab72e197274c31ebfee7ab6dbe0d4 (diff) | |
download | Nim-5263d9d6f04540acf06d5dfa36532779b7469237.tar.gz |
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.
-rw-r--r-- | .gitignore | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 1971a23cb..e4cec0ef6 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) +.*/ +~* |