minetest-mods / areas

A rewrite of the node_ownership Minetest mod with many new features.
GNU Lesser General Public License v2.1
51 stars 52 forks source link

Ignore Eclipse project files & directories #23

Closed AntumDeluge closed 7 years ago

AntumDeluge commented 7 years ago

Simplification for developers using the Eclipse IDE.

ShadowNinja commented 7 years ago

I'm not convinced this shouldn't just be in your local .git/info/exclude. There are a bunch of IDEs out there and we can't expect to add a set of excludes for all of them to every project.

AntumDeluge commented 7 years ago

Wish I had realized this earlier. Probably would have saved me some time & frustration. I guess I am still relatively new to using Git, IDEs, & development in general. Thank you.

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

Thank you for reminding me to take the time to read manuals & study software settings. :wink: