How not to display the .class in git
Make sure your .class files were not already added to the index. You would need to git rm -r –cached path/to/.classfiles/ those files first. (they will still be on the disk, but no longer part of the git index, and will be ignored by the git status) If you don’t want any .class file versioned … Read more