From 2128753484311a1854748d0274552e27007429a6 Mon Sep 17 00:00:00 2001 From: Scott Mitchell Date: Tue, 26 Aug 2014 16:52:46 -0400 Subject: [PATCH] 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8a80d67d0d..822e92dda0 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .project .classpath .settings +bin/ # IntelliJ IDEA project files and directories *.iml