[SPARK-11717] Ignore R session and history files from git see: https://issues.apache.org/jira/browse/SPARK-11717
SparkR generates R session data and history files under current directory. It might be useful to ignore these files even running SparkR on spark directory for test or development. Author: Lewuathe <[email protected]> Closes #9681 from Lewuathe/SPARK-11717. (cherry picked from commit 2035ed392e0a9c18ff9c176a7b0f0097ed1276df) Signed-off-by: Michael Armbrust <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/24cf704c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/24cf704c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/24cf704c Branch: refs/heads/branch-1.6 Commit: 24cf704c3d59b0f1d130e5e966114e94a103201f Parents: e822425 Author: Lewuathe <[email protected]> Authored: Thu Nov 12 20:09:42 2015 -0800 Committer: Michael Armbrust <[email protected]> Committed: Wed Nov 18 15:03:37 2015 -0800 ---------------------------------------------------------------------- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/24cf704c/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 350d9bd..07524bc 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,7 @@ metastore/ warehouse/ TempStatsStore/ sql/hive-thriftserver/test_warehouses + +# For R session data +.RHistory +.RData --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
