Skip to content

Commit 06c5a49

Browse files
zsxwingmarmbrus
authored andcommitted
[DELTA-REFACTOR] Copy Spark's git settings to Delta OSS
## What changes were proposed in this pull request? Copy Spark's git settings to Delta OSS to ignore files properly. ## How was this patch tested? Jenkins Closes #4887 from zsxwing/improve-git. Authored-by: Shixiong Zhu <[email protected]> Signed-off-by: Shixiong Zhu <[email protected]> GitOrigin-RevId: d12eb112ada4b50b7e0c6f10e13d7c9783391d11
1 parent 14cb4e0 commit 06c5a49

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.bat text eol=crlf
2+
*.cmd text eol=crlf
3+
*.bin binary

.gitignore

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
*#*#
2+
*.#*
3+
*.iml
4+
*.ipr
5+
*.iws
6+
*.pyc
7+
*.pyo
8+
*.swp
9+
*~
10+
.DS_Store
11+
.cache
12+
.classpath
13+
.ensime
14+
.ensime_cache/
15+
.ensime_lucene
16+
.generated-mima*
17+
.idea/
18+
.idea_modules/
19+
.project
20+
.pydevproject
21+
.scala_dependencies
22+
.settings
23+
/lib/
24+
R-unit-tests.log
25+
R/unit-tests.out
26+
R/cran-check.out
27+
R/pkg/vignettes/sparkr-vignettes.html
28+
R/pkg/tests/fulltests/Rplots.pdf
29+
build/*.jar
30+
build/apache-maven*
31+
build/scala*
32+
build/zinc*
33+
cache
34+
checkpoint
35+
conf/*.cmd
36+
conf/*.conf
37+
conf/*.properties
38+
conf/*.sh
39+
conf/*.xml
40+
conf/java-opts
41+
conf/slaves
42+
dependency-reduced-pom.xml
43+
derby.log
44+
dev/create-release/*final
45+
dev/create-release/*txt
46+
dev/pr-deps/
47+
dist/
48+
docs/_site
49+
docs/api
50+
sql/docs
51+
sql/site
52+
lib_managed/
53+
lint-r-report.log
54+
log/
55+
logs/
56+
out/
57+
project/boot/
58+
project/build/target/
59+
project/plugins/lib_managed/
60+
project/plugins/project/build.properties
61+
project/plugins/src_managed/
62+
project/plugins/target/
63+
python/lib/pyspark.zip
64+
python/deps
65+
python/test_coverage/coverage_data
66+
python/test_coverage/htmlcov
67+
python/pyspark/python
68+
reports/
69+
scalastyle-on-compile.generated.xml
70+
scalastyle-output.xml
71+
scalastyle.txt
72+
spark-*-bin-*.tgz
73+
spark-tests.log
74+
src_managed/
75+
streaming-tests.log
76+
target/
77+
unit-tests.log
78+
work/
79+
docs/.jekyll-metadata
80+
81+
# For Hive
82+
TempStatsStore/
83+
metastore/
84+
metastore_db/
85+
sql/hive-thriftserver/test_warehouses
86+
warehouse/
87+
spark-warehouse/
88+
89+
# For R session data
90+
.RData
91+
.RHistory
92+
.Rhistory
93+
*.Rproj
94+
*.Rproj.*
95+
96+
.Rproj.user
97+
98+
**/src/main/resources/js
99+
100+
# For SBT
101+
.jvmopts

0 commit comments

Comments
 (0)