From 2b8fe6d9ae2fe31d1545da98003f931ee1aa11d5 Mon Sep 17 00:00:00 2001 From: Gengliang Wang Date: Wed, 28 Oct 2020 21:32:09 +0900 Subject: [PATCH] [SPARK-33269][INFRA] Ignore ".bsp/" directory in Git ### What changes were proposed in this pull request? After SBT upgrade into 1.4.0 and above. there is always a ".bsp" directory after sbt starts: https://github.com/sbt/sbt/releases/tag/v1.4.0 This PR is to put the directory in to `.gitignore`. ### Why are the changes needed? The ".bsp" directory is an untracked file for git during development. This is annoying. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Manual local test Closes #30171 from gengliangwang/ignoreBSP. Authored-by: Gengliang Wang Signed-off-by: HyukjinKwon --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 82414d1fa3..9c145fba1b 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ *.swp *~ .DS_Store +.bsp/ .cache .classpath .ensime