Repository: incubator-zeppelin Updated Branches: refs/heads/master 13720c4aa -> 40137ab68
Add _site dir to .gitignore file ### What is this PR for? When we execute Jekyll to build Zeppelin docs, `_site` directory is generated automatically. So I added `_site` to `.gitignore` file. ### What type of PR is it? Improvement ### Todos * [x] - Add `_site` dir to `.gitignore` file ### What is the Jira issue? No ### How should this be tested? 1. Execute Jekyll following as in [here](https://github.com/apache/incubator-zeppelin/blob/master/docs/README.md) 2. Before adding `_site` to `.gitignore`, you can see that `git` is tracking `_site` directory. 3. After applying this PR, `git` doesn't track this directory anymore. ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: AhyoungRyu <[email protected]> Closes #906 from AhyoungRyu/update/gitignoreFile and squashes the following commits: 39f4d5d [AhyoungRyu] Fix wrong path 70050a3 [AhyoungRyu] Add _site dir to .gitignore file Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/40137ab6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/40137ab6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/40137ab6 Branch: refs/heads/master Commit: 40137ab688bae95c0897f69a5e8da8d6b03367aa Parents: 13720c4 Author: AhyoungRyu <[email protected]> Authored: Mon May 23 11:51:17 2016 +0900 Committer: Alexander Bezzubov <[email protected]> Committed: Tue May 24 12:53:16 2016 +0900 ---------------------------------------------------------------------- .gitignore | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/40137ab6/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 9314328..eeb4d3b 100644 --- a/.gitignore +++ b/.gitignore @@ -86,6 +86,9 @@ Thumbs.db target/ **/target/ +# Generated by Jekyll +docs/_site/ + *~ \#*\# /.emacs.desktop
