From 08c681acf239d3fe4b47b2f4f9c6ef62695ca891 Mon Sep 17 00:00:00 2001 From: Tan Wang Leng Date: Fri, 21 Jul 2017 11:17:27 +0800 Subject: [PATCH] gitignore: Ignore 'out/' build directory (#576) When running the application/tests in IntelliJ, a new 'out/' directory will be created. The 'out/' directory contains build files. They should not be included in the repository. Let's update .gitignore to ignore the 'out/' build directory. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a6e41f2239cc..823d175eb670 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ classes/ /data/ /bin/ src/main/resources/docs/ +out/