I'm using Flash Builder 4.6 (Eclipse 3.7) and Git (eGit plugin).
My project has some additional source folders configured under "Build Path > Source path". When I run a commit, for some reason eGit sees these external files and wants to add and commit them with paths like:
[source path] fruit/com/company/Apple.as
[source path] fruit/com/company/Banana.as
Obviously being outside the project they shouldn't be considered by eGit at all; nevertheless I tried various patterns in my .gitignore to get them ignored, but nothing worked:
fruit
[source*
[source path] fruit/com/company/Apple.as
\[*
Using msysgit, the command git commit -a --dry-run
does not attempt to commit these files, so it seems to be an eGit / Flash Builder thing.
How can I get these files ignored?