minetest-mods / trash_can

A mod that adds trash cans to minetest.
MIT License
7 stars 10 forks source link

Ignore Eclipse project files #2

Closed AntumDeluge closed 7 years ago

AntumDeluge commented 7 years ago

Simplification for developers using the Eclipse IDE.

AntumDeluge commented 7 years ago

Decided to create a .gitignore in my home directory & added the global core.excludesFile in my ~/.gitconfig so that globally I don't have to worry about ignoring files for individual projects.

$ git config --global --add core.excludesFile "~/gitignore"
$ cat ~/gitconfig
...
[core]
    editor = nano
    excludesFile = ~/.gitignore
...