Repository: spark Updated Branches: refs/heads/master 9b6de6fbc -> 7ced88b0d
[SPARK-3946] gitignore in /python includes wrong directory Modified to ignore not the docs/ directory, but only the docs/_build/ which is the output directory of sphinx build. Author: Masayoshi TSUZUKI <[email protected]> Closes #2796 from tsudukim/feature/SPARK-3946 and squashes the following commits: 2bea6a9 [Masayoshi TSUZUKI] [SPARK-3946] gitignore in /python includes wrong directory Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7ced88b0 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7ced88b0 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7ced88b0 Branch: refs/heads/master Commit: 7ced88b0d6b4d90c262f19afa99c02b51c0ea5ea Parents: 9b6de6f Author: Masayoshi TSUZUKI <[email protected]> Authored: Tue Oct 14 14:09:39 2014 -0700 Committer: Andrew Or <[email protected]> Committed: Tue Oct 14 14:09:39 2014 -0700 ---------------------------------------------------------------------- python/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/7ced88b0/python/.gitignore ---------------------------------------------------------------------- diff --git a/python/.gitignore b/python/.gitignore index 80b361f..52128cf 100644 --- a/python/.gitignore +++ b/python/.gitignore @@ -1,5 +1,5 @@ *.pyc -docs/ +docs/_build/ pyspark.egg-info build/ dist/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
