netty5/.gitignore
Scott Mitchell 2128753484 Exclude bin directory from git Motivation:
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.
2014-08-27 06:33:22 +02:00

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