Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use EGit with Eclipse 4. Works fine so far. But when I try to configure an Android project to work with EGit, I have problems with the .gitignore: I'm not able to exclude the /bin branch from Git. No matter whether I edit .gitignore or use the UI interface.

I know that you have to show the files for exclusion, so to change the Filter... view to show hidden files and empty directories (like assets in this project).

But whatever I do, the /bin is not excludeable for EGit. It gets the Star Icon before Commit, and will be included.

Any Ideas ?

share|improve this question
Try adding "bin/" to your .gitignore and then refreshing the project. – Mohit Deshpande Aug 3 '12 at 12:18
Are you sure that you have not accidentally committed the bin folder? You can try to remove the bin folder and see if the removed files show up in the "Unstaged Changes" table of the Git Staging view. – robinst Aug 3 '12 at 13:44
@Mohit Adding "bin/" (instead of "/bin") did not work. – Jockel Aug 5 '12 at 10:29
@robinst the problem occures even before the first commit. – Jockel Aug 5 '12 at 10:30

2 Answers

I found two workarounds:

1) After sharing the project, I do not add all files (by clicking Team/Add to index on the project), but add all subdirectories (like src and res) and all relevant files (like androidmanifest.xml). This way, EGit never wants to include /bin and /gen.

2) After adding everything, on the first commit I uncheck all the "bin" files. Interestingly, after the first commit, I can exclude bin by Team / remove from index" then, no matter that the bin files are not checked in.

share|improve this answer

I had an issue with things in the .gitignore file not being ignored (using Egit and Eclipse). It turns out that files already in the index when they are added to the .gitignore file will not be ignored, nor the directories they are in. This is true even if they have never been committed. New files added to these directories will be ignored. Refreshing the project doesn't help, but once they are removed from the index, they automatically become ignored, as will the entire directory. Adding bin/ as a line in the .gitignore (in the root directory of the project\repository) should work to exclude any bin (sub-directory at or below the .gitignore level) should work, but not if the files are in the index or have ever been committed.

There is also some odd behavior if you delete a directory when a file under it has been added to the index but not committed. It remains in the commit box.

share|improve this answer
So one solution could be to copy a .gitignore (e.g. from another project) to the new project before activating EGit on it? I'll try :) Thanx! – Jockel Aug 23 '12 at 5:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.