From 31be672c911d515b138487a4116c40608eed2221 Mon Sep 17 00:00:00 2001 From: Kousuke Saruta Date: Wed, 2 Sep 2020 09:43:32 +0900 Subject: [PATCH] [SPARK-32774][BUILD] Don't track docs/.jekyll-cache ### What changes were proposed in this pull request? This PR changes .gitignore not to track docs/.jekyll-cache. ### Why are the changes needed? When I build docs, docs/.jekyll-cache can be created and it should not be tracked. ``` $ git status On branch master Your branch is up to date with 'origin/master'. Untracked files: (use "git add ..." to include in what will be committed) docs/.jekyll-cache/ ``` ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Applied the change and confirmed the result of `git status` ``` $ git status On branch untrack-jekyll-cache nothing to commit, working tree clean ``` Closes #29622 from sarutak/untrack-jekyll-cache. Authored-by: Kousuke Saruta Signed-off-by: HyukjinKwon --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0d8addeb10..2e4f77ad6f 100644 --- a/.gitignore +++ b/.gitignore @@ -80,6 +80,7 @@ target/ unit-tests.log work/ docs/.jekyll-metadata +docs/.jekyll-cache # For Hive TempStatsStore/