Skip to content

Commit

Permalink
[SPARK-32774][BUILD] Don't track docs/.jekyll-cache
Browse files Browse the repository at this point in the history
### 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 <file>..." 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 apache#29622 from sarutak/untrack-jekyll-cache.

Authored-by: Kousuke Saruta <[email protected]>
Signed-off-by: HyukjinKwon <[email protected]>
  • Loading branch information
sarutak authored and HyukjinKwon committed Sep 2, 2020
1 parent 2a88a20 commit 31be672
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ target/
unit-tests.log
work/
docs/.jekyll-metadata
docs/.jekyll-cache

# For Hive
TempStatsStore/
Expand Down

0 comments on commit 31be672

Please sign in to comment.