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.
This commit is contained in:
Hans Raaf
2016-05-21 13:46:43 +02:00
parent 268f25225a
commit 5263d9d6f0

5
.gitignore vendored
View File

@@ -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)
.*/
~*