noseka1 / linuxband

GUI front-end for MMA (Musical MIDI Accompaniment)
linuxband.org
GNU General Public License v2.0
26 stars 15 forks source link

[Proposal] Remove Eclipse IDE project settings from git index #20

Closed jensrudolf closed 4 years ago

jensrudolf commented 4 years ago

Hi @noseka1, currently, there are several Eclipse IDE related files checked into the git index:

As the project can be build and installed completely by command line tooling (autotools), my proposal would be to remove these files from the index. I know, there are different views whether to keep IDE project files within the index or not. However, as this is a relatively small project, I would guess it's very easy to set up whatever IDE or editor for development. I am using Visual Studio Code myself. The reason I would propose to remove them, is keeping the project directory as clean and uncluttered as possible for every user/contributor and avoid unnecessary noise in the index in case e.g. there is a version change in one of the Eclipse plugins (they seem to be coded in the project files). My recommendation would be to add these kind of files to your global user gitignore in $HOME/.gitignore or in the projects .git/info/exclude file as mentioned here.

What do you think about it?

noseka1 commented 4 years ago

Hi @jensrudolf,

Thanks for bringing this up. Was contemplating it for a while. I think that having a clean and uncluttered project as you mentioned is important. I am going to remove the Eclipse specific project files from git here shortly.

Also thanks for posting the link describing the global .gitignore configuration. That's exactly what I am going to do next.