Skip to content

Commit

Permalink
ARROW-6591: [R] Ignore .Rhistory files in source control
Browse files Browse the repository at this point in the history
While working on [ARROW-6337](https://issues.apache.org/jira/browse/ARROW-6591), I saw that `.Rhistory` files are not currently ignored in arrow's `.gitignore`. They serve no purpose to the project so I think they should probably be ignored.

Closes apache#5415 from jameslamb/misc/rhistory and squashes the following commits:

cde2d71 <James Lamb> ARROW-6591:  Ignore .Rhistory files in source control

Authored-by: James Lamb <[email protected]>
Signed-off-by: François Saint-Jacques <[email protected]>
  • Loading branch information
jameslamb authored and fsaintjacques committed Sep 19, 2019
1 parent 606af08 commit 0507e50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,14 @@ python/doc/
.idea/
.pytest_cache/
pkgs
.Rproj.user
arrow.Rcheck/
docker_cache
.gdb_history
.DS_Store
*.orig

site/

# R files
**/.Rproj.user
**/*.Rcheck/
**/.Rhistory
1 change: 1 addition & 0 deletions r/.Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ clang_format.sh
^.*\.cmd$
^autobrew$
^apache-arrow.rb$
^.*\.Rhistory$

0 comments on commit 0507e50

Please sign in to comment.