2128753484
The 'bin/' directory is currently not in the .gitignore file. Eclipse creates this directory to support IDE operations. These directory is generated and not related to source code and therefore does not belong in git. Modifications: -Add 'bin/' to .gitignore Result: -No more 'bin/' directory confusion for eclipse users.
34 lines
399 B
Plaintext
34 lines
399 B
Plaintext
# Eclipse project files
|
|
.project
|
|
.classpath
|
|
.settings
|
|
bin/
|
|
|
|
# IntelliJ IDEA project files and directories
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# Geany project file
|
|
.geany
|
|
|
|
# KDevelop project file and directory
|
|
.kdev4/
|
|
*.kdev4
|
|
|
|
# Build targets
|
|
/target
|
|
*/target
|
|
|
|
# Report directories
|
|
/reports
|
|
*/reports
|
|
|
|
# Mac-specific directory that no other operating system needs.
|
|
.DS_Store
|
|
|
|
# JVM crash logs
|
|
hs_err_pid*.log
|
|
|