PilzAdam / farming_plus

Extended farming mod for Minetest
12 stars 26 forks source link

Ignore Eclipse project files & directories #22

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
...