Skip to content

Commit 4a09e88

Browse files
committed
GEODE-2749: ignore bin/ and out/ which are commonly created by IDEs
1 parent abb27b3 commit 4a09e88

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ build/
1212
.idea/
1313
build-eclipse/
1414
/tags
15-
15+
out/
16+
bin/
1617

1718

1819
*.iml
@@ -27,4 +28,4 @@ build-eclipse/
2728
*.orig
2829
geode-spark-connector/**/target/
2930
geode-spark-connector/project/project/
30-
geode-pulse/screenshots/
31+
geode-pulse/screenshots/

gradle/rat.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ rat {
6262
'.idea/**',
6363
'geode-spark-connector/.idea/**',
6464
'**/tags',
65+
'**/out/**',
66+
'**/bin/**',
6567

6668
// text files
6769
'**/*.fig',

0 commit comments

Comments
 (0)