Reputation: 18787
I put to the .gitignore file
.apt_generated
but everytime after recompiling the project eGit in Eclipse and git status -s
show that the files in .apt_generated are changed.
Upvotes: 0
Views: 859
Reputation: 14468
If you added it to the .gitignore
after you committed it once, you need to remove it from the index by typing
git rm --cached .apt_generated
Upvotes: 2