Home > database >  How can I prevent eclipse from randomly adding .gitignore files everywhere?
How can I prevent eclipse from randomly adding .gitignore files everywhere?

Time:12-06

eclipse keeps adding .gitignore files to my project that contain the following random list of files:

Thumbs.db
.DS_Store
.gradle
build/
out/
.idea
*.iml
*.ipr
*.iws
.project
.settings
.classpath
/bin/

I know which files I want to keep out of source control. I don't need my IDE to try to second guess me.

Where is the configuration option in eclipse that prevents it from creating .gitignore files.

CodePudding user response:

I mentioned before (2014) the setting "https://thomas.trocha.com/blog/content/images/2020/09/grafik.png

  • Related