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.
This commit is contained in:
Scott Mitchell 2014-08-26 16:52:46 -04:00 committed by Norman Maurer
parent 102e781715
commit 2128753484
1 changed files with 1 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
.project
.classpath
.settings
bin/
# IntelliJ IDEA project files and directories
*.iml