Skip to content

Commit

Permalink
Added .*/, ~* and *.log to GIT ignore list.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
oderwat committed May 21, 2016
1 parent 268f252 commit 5263d9d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ nimcache/
*.dylib
*.zip
*.iss
*.log

mapping.txt
tags
Expand Down Expand Up @@ -42,3 +43,7 @@ xcuserdata/
/testresults.json
testament.db
/csources

# Private directories and files (IDEs)
.*/
~*

0 comments on commit 5263d9d

Please sign in to comment.