You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2017/04/07 19:34:01 UTC

[02/19] geode git commit: GEODE-2749: ignore bin/ and out/ which are commonly created by IDEs

GEODE-2749: ignore bin/ and out/ which are commonly created by IDEs


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/4a09e88b
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/4a09e88b
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/4a09e88b

Branch: refs/heads/feature/GEODE-2632
Commit: 4a09e88b691b3d6cffe551f4ff08648e62082475
Parents: abb27b3
Author: Kirk Lund <kl...@apache.org>
Authored: Mon Apr 3 12:40:24 2017 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Mon Apr 3 12:40:24 2017 -0700

----------------------------------------------------------------------
 .gitignore        | 5 +++--
 gradle/rat.gradle | 2 ++
 2 files changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/4a09e88b/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 38c8131..31d5996 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,7 +12,8 @@ build/
 .idea/
 build-eclipse/
 /tags
-
+out/
+bin/
 
 
 *.iml
@@ -27,4 +28,4 @@ build-eclipse/
 *.orig
 geode-spark-connector/**/target/
 geode-spark-connector/project/project/
-geode-pulse/screenshots/
\ No newline at end of file
+geode-pulse/screenshots/

http://git-wip-us.apache.org/repos/asf/geode/blob/4a09e88b/gradle/rat.gradle
----------------------------------------------------------------------
diff --git a/gradle/rat.gradle b/gradle/rat.gradle
index c97a9e9..7bea470 100644
--- a/gradle/rat.gradle
+++ b/gradle/rat.gradle
@@ -62,6 +62,8 @@ rat {
     '.idea/**',
     'geode-spark-connector/.idea/**',
     '**/tags',
+    '**/out/**',
+    '**/bin/**',
 
     // text files
     '**/*.fig',