> I wonder why .gitignore is so empty.
>
> I had to add the following entries to .git/info/exclude:
>
>
> **/.classpath
Good practice says that .classpath and .project should 1) not be under version control, and
2) be ignored in your `~/.gitignore_global`. We don't do that because there is no automatic
way of recreating the project's .classpath. And since we need to manually update them from
time to time, we can't add it to the git ignore list.
> org/
? There is no org/ folder...
> org.scala-ide.sdt.build/
> org.scala-ide.build-toolchain/
These are part of the project's definition, so it wouldn't be wise to ignore these folders.
> classworlds/
> junit/
These are folders generated by you (did you use the project's folder as Eclipse workspace?)
> Any reasons why there (or more specialized entries) are not yet included to .gitignore?
As far as I can tell, the current project's .gitignore should already cover all needs.
-- Mirco