Browse Source

Add `.RDataTmp` to R.gitignore

When saving `.RData`, all data is initially saved in `.RDataTmp` which
is then renamed to `.RData`.

`.RDataTmp` should be added to `.gitignore` since it will only exist
while a save operation is in progress or something failed on save.

Relevant links:
- https://stackoverflow.com/questions/32098036/purpose-of-rdatatmp-temporary-file-r
- https://github.com/wch/r-source/blob/trunk/src/library/base/R/load.R#L145-L154
pull/3899/head
LeixB 2 years ago
parent
commit
1559f2ee6b
No account linked to committer's email address
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      R.gitignore

+ 1
- 0
R.gitignore View File

@@ -4,6 +4,7 @@

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

Loading…
Cancel
Save